fix(style): set cursor text on textarea

This commit is contained in:
simon lehericey 2022-09-09 12:07:10 +02:00
parent 93f6f22c9e
commit 7449551d3f

View file

@ -28,3 +28,8 @@ input[type="radio"] {
-moz-appearance: auto;
}
// scss-lint:enable DuplicateProperty
// remove pointer cursor on textarea
textarea {
cursor: auto;
}