HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/csb.komma.pro/resources/sass/5-Components/_components.input.scss
$inputBorder: 1px;

.c-input {
  @include border-radius(s);
  @include font-size(s);
  width: 100%;
  padding: #{space(1) - $inputBorder} space(2);
  color: palette(neutral, 700);
  border: $inputBorder solid palette(neutral, 400);
  outline: none;

  .has-error & {
    box-shadow: 0 0 7px -3px palette(warning, 700);
    border-color: palette(warning, 700);
  }

  &:focus {
    box-shadow: inset 0 0 9px 0 palette(action);
    border-color: palette(action);
  }

  @at-root textarea#{&} {
    display: block;
    padding: space(2);
    min-height: space(20) - double($inputBorder);
    line-height: space(3);
    resize: vertical;
  }
}