CSS text overflow and infinite loading fixes (#4)
All checks were successful
Deploy / Deploy (push) Successful in 41s

Reviewed-on: #4
This commit is contained in:
Astra 2025-05-10 09:14:50 +00:00
parent 614f2b4c30
commit a495f724b9
4 changed files with 20 additions and 6 deletions

View file

@ -32,17 +32,18 @@
#accountName {
margin-left: 10px;
font-size: 0.9em;
max-width: 80%;
/* replace overflow with ellipsis */
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 80%;
}
#avatar {
width: 50px;
height: 50px;
margin: 0px;
object-fit: cover;
border-right: var(--border-color) 1px solid;
}
</style>