fix height properly

This commit is contained in:
tophf 2022-01-28 03:38:37 +03:00
parent a96e01b72c
commit 333f15de0c

View File

@ -69,12 +69,14 @@ input {
} }
input:not([type]), input:not([type]),
input[type=text],
input[type=search] { input[type=search] {
background: #fff; background: #fff;
color: #000; color: #000;
height: var(--input-height); height: var(--input-height);
min-height: var(--input-height)!important; min-height: var(--input-height)!important;
line-height: var(--input-height); line-height: var(--input-height);
box-sizing: border-box;
padding: 0 3px; padding: 0 3px;
border: 1px solid hsl(0, 0%, 66%); border: 1px solid hsl(0, 0%, 66%);
} }
@ -165,7 +167,6 @@ label {
select { select {
-moz-appearance: none; -moz-appearance: none;
-webkit-appearance: none; -webkit-appearance: none;
box-sizing: content-box;
height: var(--input-height); height: var(--input-height);
font: inherit; font: inherit;
color: #000; color: #000;