30 lines
545 B
SCSS
Raw Normal View History

textarea {
width: 307px;
height: 140px;
border: 1px solid $dark-gray;
box-sizing: border-box;
border-radius: 2px;
resize: none;
margin-top: 4px;
padding: 9px 7px;
font-family: $font_family;
font-size: 16px;
&.disabled {
border-color: $dark-gray;
background-color: $gray;
color: $very-dark-gray;
pointer-events: none;
}
&:focus {
outline-style: none;
box-shadow: none;
border-color: transparent;
border-color: $blue;
}
}