Fix user name cutoff on safari

This commit is contained in:
Bojan Mojsilovic 2024-04-23 13:04:57 +02:00
parent a8cb75de07
commit 26d24179e2
3 changed files with 5 additions and 5 deletions

View File

@ -221,7 +221,7 @@
color: var(--text-primary); color: var(--text-primary);
font-size: 16px; font-size: 16px;
font-weight: 700; font-weight: 700;
line-height: 16px; line-height: 18px;
max-width: 168px; max-width: 168px;
text-overflow: ellipsis; text-overflow: ellipsis;
white-space: nowrap; white-space: nowrap;
@ -231,7 +231,7 @@
.verification { .verification {
font-size: 15px; font-size: 15px;
font-weight: 400; font-weight: 400;
line-height: 16px; line-height: 18px;
color: var(--text-tertiary-2); color: var(--text-tertiary-2);
max-width: 168px; max-width: 168px;
text-overflow: ellipsis; text-overflow: ellipsis;

View File

@ -41,7 +41,7 @@
.userName { .userName {
font-weight: 700; font-weight: 700;
font-size: 15px; font-size: 15px;
line-height: 16px; line-height: 18px;
color: var(--text-primary); color: var(--text-primary);
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;
@ -56,7 +56,7 @@
.verification { .verification {
font-weight: 400; font-weight: 400;
font-size: 12px; font-size: 12px;
line-height: 12px; line-height: 14px;
color: var(--text-tertiary); color: var(--text-tertiary);
overflow: hidden; overflow: hidden;
text-overflow: ellipsis; text-overflow: ellipsis;

View File

@ -267,7 +267,7 @@
display: flex; display: flex;
align-items: center; align-items: center;
vertical-align: baseline; vertical-align: baseline;
height: 20px; height: 22px;
} }
.followsBadge { .followsBadge {