1
0
mirror of https://github.com/hanxi/xiaomusic.git synced 2026-03-18 08:43:17 +08:00

修复页面布局问题

This commit is contained in:
涵曦
2026-01-15 17:09:17 +08:00
parent a6cb4299d9
commit bdb1e67923

View File

@@ -4,12 +4,18 @@ body {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
min-height: 100vh;
margin: 0;
padding: 0;
padding-bottom: 60px;
}
.index_page {
height: 100vh;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.player {
@@ -206,12 +212,21 @@ progress::-webkit-progress-value {
font-size: 48px;
}
.footer {
position: absolute;
bottom: 20px;
font-size: 14px;
color: #555;
user-select: none;
.footer {
position: fixed;
bottom: 20px;
left: 50%;
transform: translateX(-50%);
font-size: 14px;
color: #555;
user-select: none;
}
}
.timer-tooltip {