fix: overflow for urls

This commit is contained in:
PandaDEV 2024-12-18 14:56:12 +10:00
parent ab57f1fa72
commit c42141f7c7
No known key found for this signature in database
GPG key ID: 13EFF9BAF70EE75C

View file

@ -233,7 +233,6 @@ $mutedtext: #78756f;
display: flex; display: flex;
gap: 0; gap: 0;
flex-direction: column; flex-direction: column;
}
.info-row { .info-row {
display: flex; display: flex;
@ -256,11 +255,17 @@ $mutedtext: #78756f;
font-family: SFRoundedMedium; font-family: SFRoundedMedium;
color: $text2; color: $text2;
font-weight: 500; font-weight: 500;
flex-shrink: 0;
} }
span { span {
font-family: CommitMono; font-family: CommitMono;
color: $text; color: $text;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
margin-left: 16px;
}
} }
} }
} }