implemented reset of config

This commit is contained in:
RaffaelW 2024-11-03 22:27:12 +01:00
parent 2ee16f6452
commit 8a3bd49686
5 changed files with 47 additions and 4 deletions

View file

@ -1,6 +1,7 @@
:root {
--color-primary: #087e8b;
--color-on-primary: white;
--color-danger: #fa2b58;
}
body {
@ -59,14 +60,16 @@ select:focus {
}
button {
display: block;
border: none;
inset: none;
border-radius: 8px;
background-color: var(--color-primary);
color: var(--color-on-primary);
padding: 8px 16px;
margin: 0 auto;
}
button[type="reset"] {
background-color: var(--color-danger);
}
:is(div:has(:is(input, select)), input, select, label)
@ -126,3 +129,10 @@ label.switch input:checked + .slider::before {
left: 100%;
translate: -100% -50%;
}
.buttons {
display: flex;
flex-direction: row;
justify-content: center;
gap: 8px;
}