mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-10 13:18:48 +00:00
21 lines
340 B
CSS
21 lines
340 B
CSS
.profile-username {
|
|
color: var(--Rotkehlchen-orange-default);
|
|
width: 15rem;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
cursor: pointer;
|
|
text-align: start;
|
|
}
|
|
.profile-popover {
|
|
padding: 1rem;
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.profile-username {
|
|
width: 10rem;
|
|
}
|
|
.profile-popover {
|
|
padding: 2rem;
|
|
}
|
|
|
|
}
|