From 3e94b1b16b1d19a00879a6617d32f676505a2285 Mon Sep 17 00:00:00 2001 From: Benoit Schweblin Date: Tue, 25 Jul 2017 19:20:52 +0100 Subject: [PATCH] Enhanced navigation bar --- index.html | 1 + src/components/Editor.vue | 2 +- src/components/NavigationBar.vue | 158 ++++++++------ src/components/common/base.scss | 24 ++- src/components/common/variables.scss | 7 +- src/markdown/sample.md | 297 +++++++++++++++++++-------- src/services/animationSvc.js | 7 +- src/store/modules/files.js | 2 +- src/store/modules/layout.js | 11 +- 9 files changed, 351 insertions(+), 158 deletions(-) diff --git a/index.html b/index.html index a8261783..8ee92b35 100644 --- a/index.html +++ b/index.html @@ -3,6 +3,7 @@ my-project +
diff --git a/src/components/Editor.vue b/src/components/Editor.vue index a67ab249..58b8d82b 100644 --- a/src/components/Editor.vue +++ b/src/components/Editor.vue @@ -27,7 +27,7 @@ export default { } .editor__inner { - font-family: $font-family-editor; + font-family: $font-family-main; font-variant-ligatures: no-common-ligatures; margin: 0; padding: 10px 20px 360px 110px; diff --git a/src/components/NavigationBar.vue b/src/components/NavigationBar.vue index 2e8bd8e3..0eeb8069 100644 --- a/src/components/NavigationBar.vue +++ b/src/components/NavigationBar.vue @@ -1,45 +1,44 @@