aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/EditableView.scss
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-25 01:56:34 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-25 01:56:34 -0400
commit434fe9b5f27a14dc7bddeea9628abe4aaa62ce21 (patch)
treea97e2c3f0e8b1188405b65b69f042d57e42a5f19 /src/client/views/EditableView.scss
parent6a3d0cc899020710d5b9aabe164649c686467024 (diff)
scrolling for field text
Diffstat (limited to 'src/client/views/EditableView.scss')
-rw-r--r--src/client/views/EditableView.scss8
1 files changed, 7 insertions, 1 deletions
diff --git a/src/client/views/EditableView.scss b/src/client/views/EditableView.scss
index d2f11f5e1..fa4542ac4 100644
--- a/src/client/views/EditableView.scss
+++ b/src/client/views/EditableView.scss
@@ -3,11 +3,17 @@
overflow-wrap: break-word;
word-wrap: break-word;
hyphens: auto;
- overflow: hidden;
+ overflow-y: auto;
height: 100%;
width: 100%;
min-width: 20;
text-overflow: ellipsis;
+ -ms-overflow-style: none;
+ scrollbar-width: none;
+}
+
+.editableView-container-editing::-webkit-scrollbar {
+ display: none;
}
.editableView-container-editing-oneLine {