Fix names overflowing on mobile

This commit is contained in:
Astra 2025-05-10 17:25:56 +09:00
parent 614f2b4c30
commit 99c40b645a
Signed by: astra
SSH key fingerprint: SHA256:jQDNS75/33T59Ey4yAzrUPP/5YQaXEetsW8hwUae+ag
3 changed files with 6 additions and 2 deletions

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;