.vuiTextArea {
  appearance: none;
  border-radius: $sizeXxs;
  border: 1px solid var(--vui-color-medium-shade);
  max-width: 100%;
  resize: none;
  min-height: 80px;
  font-size: $fontSizeStandard;
  padding: $sizeS;
}

.vuiTextArea-isInvalid {
  border-color: var(--vui-color-danger-shade);
}

.vuiTextArea--fullWidth {
  width: 100%;
}

.vuiTextArea--autoGrow {
  min-height: 0;
  line-height: 1.6;
  max-height: 12rem;
}
