Skip to content

Commit 9bb9930

Browse files
committed
fix: remove resizer from textarea box in edit snippet menu
1 parent 68e1ed8 commit 9bb9930

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/styles/Extn-CustomSnippets.less

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -416,9 +416,9 @@
416416
padding: 6px 8px;
417417
box-sizing: border-box;
418418
margin: 0;
419-
white-space: pre;
420-
overflow-wrap: normal;
421-
word-break: normal;
419+
white-space: pre-wrap;
420+
overflow-wrap: break-word;
421+
word-break: break-word;
422422
}
423423

424424
#custom-snippets-add-new {
@@ -563,11 +563,11 @@
563563
textarea {
564564
min-height: 100px;
565565
max-height: 180px;
566-
resize: vertical;
566+
resize: none !important;
567567
line-height: 1.4;
568-
white-space: pre;
569-
overflow-wrap: normal;
570-
word-break: normal;
568+
white-space: pre-wrap;
569+
overflow-wrap: break-word;
570+
word-break: break-word;
571571
}
572572
}
573573

@@ -793,11 +793,11 @@
793793
textarea {
794794
min-height: 100px;
795795
max-height: 180px;
796-
resize: vertical;
796+
resize: none !important;
797797
line-height: 1.4;
798-
white-space: pre;
799-
overflow-wrap: normal;
800-
word-break: normal;
798+
white-space: pre-wrap;
799+
overflow-wrap: break-word;
800+
word-break: break-word;
801801
}
802802
}
803803

0 commit comments

Comments
 (0)