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
3 changed files with 6 additions and 2 deletions
Showing only changes of commit 99c40b645a - Show all commits

View file

@ -129,7 +129,7 @@
margin-top: 5%;
}
#Account {
width: auto;
width: 85%;
padding-left: 5%;
padding-right: 5%;
margin-bottom: 20px;

View file

@ -66,6 +66,10 @@ body {
font-size: 24px;
color: var(--text-color);
border-color: var(--border-color);
overflow-wrap: break-word;
word-wrap: normal;
word-break: break-word;
hyphens: none;
}
h1 {
@ -75,6 +79,7 @@ h1 {
#app {
max-width: 1400px;
width: 100%;
margin: 0;
padding: 0;
margin-left: auto;

View file

@ -37,7 +37,6 @@
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 80%;
}
#avatar {
width: 50px;