diff --git a/src/App.vue b/src/App.vue index ead2d4967..1cbe8ff77 100644 --- a/src/App.vue +++ b/src/App.vue @@ -2,7 +2,10 @@
@@ -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 e99e0b42e..696c62e2a 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)