feat: button stylin

This commit is contained in:
Ali Gator 2024-04-27 15:24:57 +02:00
parent 2b1ebea049
commit 795d852a10
1 changed files with 11 additions and 2 deletions

View File

@ -81,11 +81,20 @@ input[type="number"] {
}
input[type="button"] {
min-width: 36px;
min-width: 40px;
min-height: 40px;
margin: 0 5px;
padding: 5px;
font-weight: bold;
line-height: 1.5em;
border-radius: 0;
outline: none;
border: none;
font-size: 1.1em;
background: var(--light2);
}
input[type="button"]:hover {
background: var(--light3);
}
.form-field {