fixed loading screen & updated toy-button font size

This commit is contained in:
2025-01-24 20:57:28 +01:00
parent 8c3a4c9dc5
commit ea59a0f820
2 changed files with 12 additions and 7 deletions
+4 -5
View File
@@ -32,12 +32,11 @@
} }
#loadingText { #loadingText {
position: absolute; position: absolute;
bottom: 0%; bottom: 0;
left: calc(50% - 45vw); left: calc(50vw - min(45vw, 250px));
width: 90vw; width: min(90vw, 500px);
text-align: center; text-align: center;
font-size: 1.5rem; font-size: min(5vmin, 2vmax);
word-break: break-word;
display: flex; display: flex;
justify-content: center; justify-content: center;
color: #ffffff; color: #ffffff;
+8 -2
View File
@@ -19,14 +19,16 @@
padding: calc(1px * var(--pxDensity)); padding: calc(1px * var(--pxDensity));
border-top: calc(1px * var(--pxDensity)) solid var(--navBar_Border); border-top: calc(1px * var(--pxDensity)) solid var(--navBar_Border);
text-align: left; text-align: left;
overflow: scroll; overflow-y: scroll;
overflow-x: hidden;
} }
h1 { h1 {
font-size: max(1.2em, 2.5vmin);
margin: 0%; margin: 0%;
margin-bottom: calc(1px * var(--pxDensity)); margin-bottom: calc(1px * var(--pxDensity));
} }
.desc { .desc {
font-size: 1.3rem; font-size: max(1em, 2vmin);
margin: 0%; margin: 0%;
} }
button:hover { button:hover {
@@ -40,3 +42,7 @@ button:active {
.toyLi { .toyLi {
margin: calc(3px * var(--pxDensity)); margin: calc(3px * var(--pxDensity));
} }
ul {
margin: 0%;
padding: 0%;
}