Skip to content

Commit

Permalink
Fix. 修复移动版视图显示异常的错误
Browse files Browse the repository at this point in the history
  • Loading branch information
RavelloH committed Jan 17, 2025
1 parent 5515f73 commit 719f6a5
Showing 1 changed file with 26 additions and 24 deletions.
50 changes: 26 additions & 24 deletions src/assets/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -3405,30 +3405,32 @@ span {
color: white;
}

#main::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 10px;
background: linear-gradient(to bottom, #111111 0%, rgba(0, 0, 0, 0) 100%);
pointer-events: none;
z-index: 1;
}
@media screen and (min-width: 400px) {
#main::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 10px;
background: linear-gradient(to bottom, #111111 0%, rgba(0, 0, 0, 0) 100%);
pointer-events: none;
z-index: 1;
}

#main::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 10px;
pointer-events: none;
z-index: 1;
background: linear-gradient(to top, #111111 0%, rgba(0, 0, 0, 0) 100%);
}
#main::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 10px;
pointer-events: none;
z-index: 1;
background: linear-gradient(to top, #111111 0%, rgba(0, 0, 0, 0) 100%);
}

.listprogram {
margin-top: 10px;
.listprogram {
margin-top: 10px;
}
}

0 comments on commit 719f6a5

Please sign in to comment.