diff --git a/src/App.js b/src/App.js index 93f8f36148..8f90e6be05 100644 --- a/src/App.js +++ b/src/App.js @@ -1,13 +1,15 @@ import UserPanel from './components/user_panel/user_panel.vue' import NavPanel from './components/nav_panel/nav_panel.vue' import Notifications from './components/notifications/notifications.vue' +import StyleSwitcher from './components/style_switcher/style_switcher.vue' export default { name: 'app', components: { UserPanel, NavPanel, - Notifications + Notifications, + StyleSwitcher }, computed: { currentUser () { return this.$store.state.users.currentUser }, diff --git a/src/App.scss b/src/App.scss index 85757bcec4..fd1182e05a 100644 --- a/src/App.scss +++ b/src/App.scss @@ -58,6 +58,12 @@ nav { position: fixed; height: 50px; + .inner-nav { + display: flex; + align-items: center; + flex-basis: 920px; + margin: auto; + } } .sidebar { diff --git a/src/App.vue b/src/App.vue index 18a8ad150f..5da469b502 100644 --- a/src/App.vue +++ b/src/App.vue @@ -1,8 +1,11 @@