Add dark mode, allow noise settings to be changed while running, add timer toggle

This commit is contained in:
Kevin Thomas
2021-07-19 01:35:52 -07:00
parent bca1faebbb
commit 5585d81690
5 changed files with 73 additions and 27 deletions

16
src/components/AppBar.vue Normal file
View File

@@ -0,0 +1,16 @@
<template>
<v-app-bar
app
color="secondary"
dark
dense
>
<v-container fill-height>
<v-switch
v-model="$vuetify.theme.dark"
inset
label="Dark Mode"
/>
</v-container>
</v-app-bar>
</template>