Skip to content

Commit

Permalink
fix: style improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsLando committed Aug 30, 2024
1 parent 2568a2e commit b704a50
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/views/Settings.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<v-container fluid grid-list-md class="pa-4 pt-8">
<v-container fluid grid-list-md class="pt-8 px-0">
<v-form
id="form_settings"
@submit.prevent="update"
v-model="valid_zwave"
ref="form_settings"
class="pb-6"
class="pb-6 mx-2"
>
<v-expansion-panels
accordion
Expand Down Expand Up @@ -1912,7 +1912,10 @@
<v-row
:justify="$vuetify.breakpoint.xsOnly ? 'center' : 'end'"
space-be
class="sticky-buttons mt-2"
class="sticky-buttons py-3 px-4"
:style="{
backgroundColor: internalDarkMode ? '#272727' : '#f5f5f5',
}"
>
<v-btn class="mr-2" small color="red darken-1" @click="resetConfig">
Reset
Expand Down Expand Up @@ -2612,6 +2615,6 @@ export default {
.sticky-buttons {
position: sticky;
z-index: 3; /* to be above tables */
bottom: 40px;
bottom: 30px;
}
</style>

0 comments on commit b704a50

Please sign in to comment.