You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
446 B
22 lines
446 B
.inputContainer {
|
|
composes: input from '~Components/Form/Input.css';
|
|
|
|
position: relative;
|
|
min-height: 35px;
|
|
height: auto;
|
|
|
|
&.isFocused {
|
|
outline: 0;
|
|
border-color: $inputFocusBorderColor;
|
|
box-shadow: inset 0 1px 1px $inputBoxShadowColor, 0 0 8px $inputFocusBoxShadowColor;
|
|
}
|
|
}
|
|
|
|
.hasError {
|
|
composes: hasError from '~Components/Form/Input.css';
|
|
}
|
|
|
|
.hasWarning {
|
|
composes: hasWarning from '~Components/Form/Input.css';
|
|
}
|