Add MainFramework and loading mask. Add animation to menu.

This commit is contained in:
2023-09-06 18:27:18 +08:00
parent 98b8171edd
commit c1b502e124
14 changed files with 279 additions and 24 deletions

View File

@@ -6,7 +6,7 @@ $font-secondary-color: #9E9E9E;
.body {
color: $font-main-color;
user-select: none;
min-width: 1800px;
min-width: 900px;
min-height: 400px;
}
@@ -103,3 +103,19 @@ $font-secondary-color: #9E9E9E;
height: 23px;
}
}
#loading-mask {
position: absolute;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
z-index: 100;
background-color: rgba(200, 200, 200, 0.2);
}
#fit-fullscreen {
width: 100vw;
height: 100vh;
}