summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/App.vue8
-rw-r--r--src/router.js10
2 files changed, 11 insertions, 7 deletions
diff --git a/src/App.vue b/src/App.vue
index ead2d496..1cbe8ff7 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -2,7 +2,10 @@
<div v-if="!serverData.setup" id="app-social" :class="{public: serverData.public}">
<app-navigation v-if="!serverData.public" id="app-navigation">
<ul id="app-social-navigation">
- <app-navigation-item v-for="item in menu.items" :key="item.key" :to="item.to" :title="item.title" :icon="item.icon" :exact="true" />
+ <app-navigation-item v-for="item in menu.items" :key="item.key" :to="item.to"
+ :title="item.title"
+ :icon="item.icon"
+ :exact="true" />
</ul>
</app-navigation>
<div id="app-content">
@@ -72,7 +75,7 @@
}
.setup {
- margin: auto;
+ margin: auto;
width: 700px;
}
@@ -84,6 +87,7 @@
#social-spacer a:focus {
border: none !important;
}
+
a.external_link {
text-decoration: underline;
}
diff --git a/src/router.js b/src/router.js
index e99e0b42..696c62e2 100644
--- a/src/router.js
+++ b/src/router.js
@@ -25,11 +25,11 @@ import Vue from 'vue'
import Router from 'vue-router'
// Dynamic loading
-const Timeline = () => import('./views/Timeline')
-const TimelineSinglePost = () => import('./views/TimelineSinglePost')
-const Profile = () => import(/* webpackChunkName: "profile" */'./views/Profile')
-const ProfileTimeline = () => import(/* webpackChunkName: "profile" */'./views/ProfileTimeline')
-const ProfileFollowers = () => import(/* webpackChunkName: "profile" */'./views/ProfileFollowers')
+const Timeline = () => import('./views/Timeline.vue')
+const TimelineSinglePost = () => import('./views/TimelineSinglePost.vue')
+const Profile = () => import(/* webpackChunkName: "profile" */'./views/Profile.vue')
+const ProfileTimeline = () => import(/* webpackChunkName: "profile" */'./views/ProfileTimeline.vue')
+const ProfileFollowers = () => import(/* webpackChunkName: "profile" */'./views/ProfileFollowers.vue')
Vue.use(Router)