Optimize stylesheet in FitCenter, FitFullScreen and LoadingMask

This commit is contained in:
2023-09-10 11:40:32 +08:00
parent ce57b02310
commit 2a6c478620
7 changed files with 26 additions and 25 deletions

View File

@@ -102,29 +102,4 @@ $font-secondary-color: #9E9E9E;
width: 23px;
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 {
position: relative;
width: 100%;
height: 100vh;
}
.fit-center {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}

View File

@@ -0,0 +1,7 @@
.fit-center {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
}

View File

@@ -0,0 +1,5 @@
.fit-fullscreen {
position: relative;
width: 100%;
height: 100vh;
}

View File

@@ -0,0 +1,10 @@
.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);
}