22 lines
443 B
CSS
22 lines
443 B
CSS
.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';
|
|
}
|