[frontend/components] Fix note overflow clipping

This commit is contained in:
pancakes 2025-03-04 17:15:20 +10:00 committed by Laura Hausmann
parent 1644a7c35c
commit 353b665080
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -5,7 +5,7 @@
white-space: pre-wrap; white-space: pre-wrap;
max-height: 40em; max-height: 40em;
height: auto; height: auto;
overflow-y: hidden; overflow: hidden;
overflow-wrap: break-word; overflow-wrap: break-word;
} }
@ -30,6 +30,8 @@
.cw { .cw {
display: inline-block; display: inline-block;
overflow-x: hidden;
overflow-wrap: break-word;
} }
.cw-button { .cw-button {