summaryrefslogtreecommitdiff
path: root/master/client/src/App.vue
diff options
context:
space:
mode:
Diffstat (limited to 'master/client/src/App.vue')
-rw-r--r--master/client/src/App.vue15
1 files changed, 15 insertions, 0 deletions
diff --git a/master/client/src/App.vue b/master/client/src/App.vue
new file mode 100644
index 0000000..1638c18
--- /dev/null
+++ b/master/client/src/App.vue
@@ -0,0 +1,15 @@
+<template>
+ <router-view />
+</template>
+
+<style lang="scss">
+@use "scss/colors";
+@use "scss/fonts";
+
+#app {
+ color: colors.$text;
+ background-color: colors.$background;
+ font-family: fonts.$primary;
+}
+
+</style>