fix input buttons

This commit is contained in:
Geoff Doty 2021-10-16 03:16:11 -04:00
parent ab4457ff63
commit c87bf4f595
1 changed files with 11 additions and 11 deletions

View File

@ -167,17 +167,11 @@ input[type="radio"] {
height: calc(var(--size) * .8); height: calc(var(--size) * .8);
} }
input[type="submit"] { button,
background-color: var(--theme); input[type="submit"],
color: var(--bg); input[type="reset"],
font-size: var(--size); select,
height: calc(var(--size) * 3); textarea {
padding: 0;
margin: var(--space) 0;
cursor: pointer;
}
button, select, textarea {
display: inline-block; display: inline-block;
outline: none; outline: none;
font-family: var(--font); font-family: var(--font);
@ -193,6 +187,12 @@ button, select, textarea {
cursor: pointer; cursor: pointer;
} }
input[type="submit"],
input[type="reset"] {
background-color: var(--theme);
color: var(--bg);
}
select { select {
background: var(--bg) no-repeat 100%; background: var(--bg) no-repeat 100%;
color: var(--fg); color: var(--fg);