diff --git a/frontend/src/components/Navigation.vue b/frontend/src/components/Navigation.vue index 3af7e300c..1a009a7c0 100644 --- a/frontend/src/components/Navigation.vue +++ b/frontend/src/components/Navigation.vue @@ -81,6 +81,10 @@ function toggleTheme() { darkMode.value ? localStorage.setItem('theme', 'dark') : localStorage.setItem('theme', 'light') } +function uploadRom() { + console.log("uploading rom") +} + getPlatforms() @@ -116,19 +120,21 @@ getPlatforms() - + ROM MANAGER - + - + + + mdi-upload @@ -136,7 +142,7 @@ getPlatforms() - + + diff --git a/frontend/src/plugins/vuetify.js b/frontend/src/plugins/vuetify.js index c258c925b..63384ee24 100644 --- a/frontend/src/plugins/vuetify.js +++ b/frontend/src/plugins/vuetify.js @@ -20,13 +20,14 @@ export default createVuetify({ colors: { primary: '#FFFFFF', secondary: '#BDBDBD', - toolbar: '#FFFFFF' + toolbar: '#FFFFFF', + background: '#FFFFFF' } }, dark: { colors: { primary: '#212121', - secondary: '#BDBDBD', + secondary: '#424242', toolbar: '#212121', background: '#212121' }