summaryrefslogtreecommitdiff
path: root/master/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'master/src/App.vue')
-rw-r--r--master/src/App.vue29
1 files changed, 7 insertions, 22 deletions
diff --git a/master/src/App.vue b/master/src/App.vue
index ec98c47..1638c18 100644
--- a/master/src/App.vue
+++ b/master/src/App.vue
@@ -1,30 +1,15 @@
<template>
- <nav>
- <router-link to="/">Home</router-link> |
- <router-link to="/about">About</router-link>
- </nav>
- <router-view/>
+ <router-view />
</template>
<style lang="scss">
+@use "scss/colors";
+@use "scss/fonts";
+
#app {
- font-family: Avenir, Helvetica, Arial, sans-serif;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- text-align: center;
- color: #2c3e50;
+ color: colors.$text;
+ background-color: colors.$background;
+ font-family: fonts.$primary;
}
-nav {
- padding: 30px;
-
- a {
- font-weight: bold;
- color: #2c3e50;
-
- &.router-link-exact-active {
- color: #42b983;
- }
- }
-}
</style>