fixes after PRs

This commit is contained in:
panr
2023-06-10 00:27:17 +02:00
parent 4a8f9aa798
commit 3a5a676118
11 changed files with 73 additions and 53 deletions

View File

@ -4,6 +4,7 @@ input, textarea, select {
border: 1px solid $accent;
border-radius: 0;
padding: 10px;
margin: 5px 0;
font: inherit;
appearance: none;
@ -28,3 +29,15 @@ select {
::placeholder {
color: transparentize($accent, .5);
}
input {
&[type="checkbox"] {
vertical-align: middle;
padding: 10px;
box-shadow: inset 0 0 0 3px $background;
&:checked {
background: $accent;
}
}
}