From 6930a9dac01becd001b73a5f209e909f4bffb053 Mon Sep 17 00:00:00 2001 From: Thomas Ballmann Date: Fri, 4 Dec 2020 21:21:42 +0100 Subject: [PATCH] layout improvements --- app/src/assets/app.css | 5 + app/src/components/SetupWifiConnect.vue | 39 +-- app/src/views/Device.vue | 135 ++++++----- app/src/views/Playlist.vue | 157 ++++++------ app/src/views/System.vue | 305 ++++++++++++------------ app/src/views/Weather.vue | 1 + app/src/views/Wifi.vue | 250 +++++++++---------- 7 files changed, 452 insertions(+), 440 deletions(-) diff --git a/app/src/assets/app.css b/app/src/assets/app.css index 3c3c3e6..7be9580 100644 --- a/app/src/assets/app.css +++ b/app/src/assets/app.css @@ -1,3 +1,8 @@ .v-icon { fill: currentColor; +} + +.v-btn__content .v-icon--left, .v-btn__content .v-icon--right { + width: 24px !important; + height: 24px !important; } \ No newline at end of file diff --git a/app/src/components/SetupWifiConnect.vue b/app/src/components/SetupWifiConnect.vue index ebc5ec7..be12a28 100644 --- a/app/src/components/SetupWifiConnect.vue +++ b/app/src/components/SetupWifiConnect.vue @@ -2,8 +2,14 @@ + + {{ ssid }} + + $close - - Enter the password for "{{ ssid }}" - - + - i8n:Join + Join @@ -61,9 +65,8 @@ }, }, data: () => ({ - isConnecting: false, password: '', - show1: false, + show: false, }), } diff --git a/app/src/views/Device.vue b/app/src/views/Device.vue index 2aaf64c..f3f44fb 100644 --- a/app/src/views/Device.vue +++ b/app/src/views/Device.vue @@ -1,77 +1,76 @@