UX: No border-radius on textarea (#15594)
We already set border-radius to 0 on all input elements, but we didn't do that for textarea, which resulted in some of those elements appearing rounded on some browsers (iOS Safari)
This commit is contained in:
parent
f2be253b7c
commit
214bce6fad
|
@ -255,6 +255,8 @@ textarea {
|
|||
height: auto;
|
||||
background-color: var(--secondary);
|
||||
border: 1px solid var(--primary-medium);
|
||||
border-radius: 0;
|
||||
|
||||
&:focus {
|
||||
@include default-focus;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue