mirror of
https://github.com/ExamAware/ExamSchedule.git
synced 2025-04-29 19:16:33 +00:00
fix: 允许页面滚动并隐藏滚动条
This commit is contained in:
parent
06d1394bd0
commit
f32060110a
@ -6,7 +6,12 @@ body {
|
||||
background-size: cover;
|
||||
animation: fadeIn 1s;
|
||||
color: #e0e0e0;
|
||||
overflow: hidden;
|
||||
overflow: auto; /* 允许页面滚动 */
|
||||
}
|
||||
|
||||
/* 隐藏滚动条 */
|
||||
body::-webkit-scrollbar {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
|
Loading…
x
Reference in New Issue
Block a user