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