diff --git a/src/App.vue b/src/App.vue
index 4125aef..6043bb4 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -19,6 +19,11 @@
+
+
@@ -79,6 +84,15 @@ export default class App extends Vue {
@import "./styles/variables.scss";
@import "./styles/global.scss";
+.route {
+ margin: 0 0.2em;
+
+ &-active {
+ color: $accentCol;
+ font-weight: bold;
+ }
+}
+
.app {
background: $bgCol;
color: white;
@@ -118,7 +132,19 @@ export default class App extends Vue {
justify-content: space-between;
margin: 0 0.3em;
- font-size: 0.4em;
+ padding: 0.2em;
+ font-size: 0.35em;
+ }
+
+ &-links {
+ display: flex;
+ justify-content: center;
+
+ background-color: #222;
+ border-radius: 0.7em;
+
+ padding: 0.2em;
+ font-size: 0.35em;
}
}
diff --git a/src/components/ui/AppBar.vue b/src/components/ui/AppBar.vue
index d3a0c21..1d34dfd 100644
--- a/src/components/ui/AppBar.vue
+++ b/src/components/ui/AppBar.vue
@@ -15,7 +15,7 @@ import Options from "@/components/ui/Options.vue";
export default class AppBar extends Vue {}
-
\ No newline at end of file