fix(ui): polish form input

pull/6968/head
charlie 2022-10-10 14:58:08 +08:00 committed by Tienson Qin
parent dc9cf6339b
commit 3c937520a6
3 changed files with 6 additions and 2 deletions

View File

@ -25,6 +25,7 @@
background: transparent;
padding: 0;
resize: none;
box-shadow: none;
}
}

View File

@ -107,6 +107,9 @@ input::-webkit-inner-spin-button {
width: 35px;
text-align: right;
padding-right: 4px;
height: 18px;
border: none;
background: transparent;
}
}

View File

@ -312,7 +312,7 @@ html.is-mobile {
}
.form-select {
@apply block w-full pl-3 pr-10 py-2 text-base leading-6
@apply block w-full pl-3 pr-10 py-2 text-base leading-6 rounded
border-gray-300 focus:outline-none sm:text-sm sm:leading-5;
background-color: var(--ls-primary-background-color, transparent);
@ -327,7 +327,7 @@ html.is-mobile {
.form-input {
@apply block w-full pl-2
sm:text-sm sm:leading-5;
sm:text-sm sm:leading-5 rounded;
border-width: 1px;
border-color: var(--ls-border-color);