fix: comments block on edge and older browser (#1310)

* fix: overflow on edge and older browser
This commit is contained in:
Whai 2025-06-30 21:14:08 -07:00 committed by GitHub
parent 232cea8cc9
commit 5364702b69
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,6 +12,12 @@
padding: 8px; padding: 8px;
background: var(--mantine-color-gray-light); background: var(--mantine-color-gray-light);
cursor: pointer; cursor: pointer;
overflow-wrap: break-word;
word-wrap: break-word;
word-break: break-word;
-ms-word-break: break-word;
max-width: 100%;
box-sizing: border-box;
} }
.commentEditor { .commentEditor {