23 lines
396 B
SCSS
Raw Normal View History

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