31 lines
463 B
SCSS
31 lines
463 B
SCSS
.skillboxform-input {
|
|
|
|
margin-bottom: 20px;
|
|
font-family: $sans-serif-font-family;
|
|
|
|
&__label {
|
|
margin-bottom: 10px;
|
|
display: inline-block;
|
|
}
|
|
|
|
&__input {
|
|
width: 100%;
|
|
|
|
&--error {
|
|
border-color: $color-error;
|
|
}
|
|
}
|
|
|
|
&__error {
|
|
margin-top: 10px;
|
|
color: $color-error;
|
|
display: inline-block;
|
|
}
|
|
|
|
&__hint {
|
|
margin-top: $small-spacing;
|
|
font-family: $sans-serif-font-family;
|
|
color: $color-silver-dark;
|
|
}
|
|
}
|