Merge pull request #7750 from betagouv/fix_cursor_on_textarea

fix(style): applique un cursor text au textarea
This commit is contained in:
mfo 2022-09-09 12:17:35 +02:00 committed by GitHub
commit 062477dede
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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