File: D:/HostingSpaces/SBogers10/ste.komma.pro/resources/sass/5-Components/_components.input.scss
$inputBorder: 1px;
.c-input {
@include border-radius(xs);
@include font-size(s);
width: 100%;
padding: #{space(1) - $inputBorder} space(2);
border: $inputBorder solid palette(neutral, 300);
outline: none;
.has-error & {
box-shadow: 0 0 7px -3px palette(action);
border-color: palette(action);
}
&:focus {
box-shadow: 0 0 7px -3px rgba(palette(action), 0.75);
border-color: palette(action);
}
@at-root textarea#{&} {
display: block;
padding: space(2);
min-height: space(20) - double($inputBorder);
line-height: space(3);
resize: vertical;
}
}