CSS overflow and infinite loading fixes #4

Merged
astra merged 3 commits from astra/css-fixes into main 2025-05-10 09:14:50 +00:00
2 changed files with 12 additions and 2 deletions
Showing only changes of commit 8e1a46d81b - Show all commits

View file

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

View file

@ -222,13 +222,21 @@
margin-left: 10px;
font-size: 0.9em;
text-align: start;
overflow-wrap: break-word;
word-break: break-word;
max-width: 80%;
max-height: 95%;
overflow: hidden;
align-self: flex-start;
margin-top: auto;
margin-bottom: auto;
}
#avatar {
height: 100%;
height: 60px;
width: 60px;
margin: 0px;
margin-left: 0px;
overflow: hidden;
object-fit: cover;
border-right: var(--border-color) 1px solid;
}
#carouselContainer {