fix input buttons
This commit is contained in:
parent
ab4457ff63
commit
c87bf4f595
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue