v1.0-230926 #27

Merged
FatttSnake merged 81 commits from dev into master 2023-09-26 11:06:08 +08:00
2 changed files with 11 additions and 0 deletions
Showing only changes of commit e842651851 - Show all commits

View File

@@ -3,6 +3,11 @@ $background-color: #F5F5F5;
$font-main-color: #4D4D4D; $font-main-color: #4D4D4D;
$font-secondary-color: #9E9E9E; $font-secondary-color: #9E9E9E;
#root {
height: 100vh;
width: 100vw;
}
.body { .body {
color: $font-main-color; color: $font-main-color;
user-select: none; user-select: none;

View File

@@ -7,4 +7,10 @@
.hide-scrollbar-selection { .hide-scrollbar-selection {
position: relative; position: relative;
overflow: scroll; overflow: scroll;
scrollbar-width: none;
-ms-overflow-style: none;
}
.hide-scrollbar-selection::-webkit-scrollbar {
display: none;
} }