diff options
author | HampusM <hampus@hampusmat.com> | 2022-05-23 15:30:53 +0200 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2022-05-23 15:30:53 +0200 |
commit | 804f13402078a025924f5a42c479dd418f985112 (patch) | |
tree | 537975a99a83aa97abf34fc11ed27b269750febb /master/src/App.vue | |
parent | 71a02201164597481b926a26ab1eaa1ee112f4ec (diff) |
feat(master): add display single minion temperature reading
Diffstat (limited to 'master/src/App.vue')
-rw-r--r-- | master/src/App.vue | 29 |
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> |