Make loading transparent

This commit is contained in:
Peter 2024-02-18 01:00:12 +08:00
parent 93197e6a8b
commit e28e493343

View File

@ -38,13 +38,15 @@ canvas {
cursor: pointer; cursor: pointer;
} }
body {
background-color: black;
}
#loadingOverlay { #loadingOverlay {
position: absolute; position: absolute;
top: 0; top: 50%;
left: 0; left: 50%;
width: 100%; transform: translate(-50%, -50%);
height: 100%;
background-color: #222222;
display: flex; display: flex;
justify-content: center; justify-content: center;
align-items: center; align-items: center;