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

@ -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;