17 lines
299 B
SCSS
17 lines
299 B
SCSS
![]() |
textarea {
|
||
|
width: 307px;
|
||
|
height: 140px;
|
||
|
|
||
|
border: 1px solid $gray;
|
||
|
box-sizing: border-box;
|
||
|
border-radius: 4px;
|
||
|
resize: none;
|
||
|
|
||
|
&:focus {
|
||
|
outline-style: none;
|
||
|
box-shadow: none;
|
||
|
border-color: transparent;
|
||
|
border: 2px solid $black;
|
||
|
}
|
||
|
|
||
|
}
|