fix notifications and make long statuses use relative units

This commit is contained in:
Henry Jameson 2025-04-03 11:30:15 +03:00
commit 5c5a350447
2 changed files with 4 additions and 3 deletions

View file

@ -284,8 +284,6 @@
& .status-username, & .status-username,
& .mute-reason { & .mute-reason {
word-break: normal;
white-space: nowrap; white-space: nowrap;
text-overflow: ellipsis; text-overflow: ellipsis;
overflow: hidden; overflow: hidden;

View file

@ -53,12 +53,15 @@
} }
.text-wrapper { .text-wrapper {
text-overflow: ellipsis;
word-break: break-word;
overflow: hidden;
display: flex; display: flex;
flex-flow: column nowrap; flex-flow: column nowrap;
&.-tall-status { &.-tall-status {
position: relative; position: relative;
height: 220px; height: 16em;
overflow: hidden; overflow: hidden;
z-index: 1; z-index: 1;