aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/EditableView.scss
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-10-10 20:06:17 -0400
committerbobzel <zzzman@gmail.com>2024-10-10 20:06:17 -0400
commit962302d41ba5b086818f5db9ea5103c1e754b66f (patch)
treefe7b36ce2ac3c8276e4175e4dd8d5e223e1373a7 /src/client/views/EditableView.scss
parent3a35e2687e3c7b0c864dd4f00b1002ff088b56d3 (diff)
parent040a1c5fd3e80606793e65be3ae821104460511b (diff)
Merge branch 'master' into alyssa-starter
Diffstat (limited to 'src/client/views/EditableView.scss')
-rw-r--r--src/client/views/EditableView.scss10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/client/views/EditableView.scss b/src/client/views/EditableView.scss
index 27b260450..fa4542ac4 100644
--- a/src/client/views/EditableView.scss
+++ b/src/client/views/EditableView.scss
@@ -3,10 +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 {
@@ -37,3 +44,4 @@
border: none;
outline: none;
}
+