From e3a0e50330b3fbf7afa1b467ab2c857c19f5e22d Mon Sep 17 00:00:00 2001 From: zurdi zurdo Date: Sun, 26 Mar 2023 21:32:16 +0200 Subject: [PATCH] upload button added to app bar --- frontend/src/components/Navigation.vue | 17 +++++++++++++---- frontend/src/plugins/vuetify.js | 5 +++-- 2 files changed, 16 insertions(+), 6 deletions(-) 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' }