mirror of
https://github.com/HendrikRauh/dmx-interface.git
synced 2025-07-12 00:15:44 +00:00
implemented reset of config
This commit is contained in:
parent
2ee16f6452
commit
8a3bd49686
5 changed files with 47 additions and 4 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue