23 lines
411 B
SCSS
23 lines
411 B
SCSS
@import "./functions/func.scss";
|
|
|
|
.ui-text,
|
|
.ui-input[type] {
|
|
font-size: var(--font-size);
|
|
font-family: var(--font-family);
|
|
|
|
@include outborder();
|
|
|
|
&.validation-error {
|
|
border-color: var(--red-color);
|
|
|
|
&:focus,
|
|
&:hover {
|
|
border-color: var(--red-color);
|
|
}
|
|
}
|
|
}
|
|
|
|
.ui-input {
|
|
text-indent: var(--text-indent);
|
|
line-height: var(--line-height);
|
|
} |