diff --git a/src/App.js b/src/App.js index 06634adb..4b0e81d0 100644 --- a/src/App.js +++ b/src/App.js @@ -1,15 +1,13 @@ 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, - StyleSwitcher + Notifications }, data: () => ({ mobileActivePanel: 'timeline' diff --git a/src/App.scss b/src/App.scss index d39fc749..5c14c17b 100644 --- a/src/App.scss +++ b/src/App.scss @@ -59,6 +59,8 @@ nav { height: 50px; .inner-nav { + padding-left: 20px; + padding-right: 20px; display: flex; align-items: center; flex-basis: 920px; @@ -260,3 +262,8 @@ nav { display: flex; } } + +.item.right { + text-align: right; + padding-right: 20px; +} diff --git a/src/App.vue b/src/App.vue index a22307a6..d8e1d3e8 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,9 +3,11 @@
diff --git a/src/components/attachment/attachment.vue b/src/components/attachment/attachment.vue index 505182c6..311e36b8 100644 --- a/src/components/attachment/attachment.vue +++ b/src/components/attachment/attachment.vue @@ -1,5 +1,5 @@