chore: dark & light mode improvements

This commit is contained in:
2025-02-07 14:08:06 +01:00
parent 0930dab77c
commit f28f1e31c2
3 changed files with 22 additions and 4 deletions
+5 -1
View File
@@ -170,7 +170,11 @@ $darkModeTextCol: #eee;
select {
color: $darkModeTextCol !important;
border-color: $darkModeTextCol !important;
border-color: $darkModeTextCol;
&:focus-visible {
border-color: $accentCol;
}
}
option,
+15 -2
View File
@@ -31,8 +31,8 @@
<hr />
<div class="buttons">
<button class="g-button action" @click="selectLocalOrder(order)">Wybierz</button>
<button class="g-button action" @click="removeOrder(order)">Usuń</button>
<button class="g-button" @click="selectLocalOrder(order)">Wybierz</button>
<button class="g-button" @click="removeOrder(order)">Usuń</button>
</div>
</li>
</transition-group>
@@ -178,5 +178,18 @@ li {
.buttons {
display: flex;
gap: 0.5em;
button {
padding: 0.5em;
background-color: $bgColLighter;
&:hover {
background-color: #666;
}
&:focus-visible {
outline: 2px solid $accentCol;
}
}
}
</style>
+2 -1
View File
@@ -67,7 +67,8 @@ button {
button.g-button {
text-align: center;
color: white;
color: inherit;
transition:
color 100ms ease-in,
background-color 100ms ease-in;