From 7449551d3f1d41591fd066af55f681de4f7508dc Mon Sep 17 00:00:00 2001 From: simon lehericey Date: Fri, 9 Sep 2022 12:07:10 +0200 Subject: [PATCH] fix(style): set cursor text on textarea --- app/assets/stylesheets/dsfr.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app/assets/stylesheets/dsfr.scss b/app/assets/stylesheets/dsfr.scss index 7788cd923..7cf11996a 100644 --- a/app/assets/stylesheets/dsfr.scss +++ b/app/assets/stylesheets/dsfr.scss @@ -28,3 +28,8 @@ input[type="radio"] { -moz-appearance: auto; } // scss-lint:enable DuplicateProperty + +// remove pointer cursor on textarea +textarea { + cursor: auto; +}