feat: 页面布局的移动端适配
All checks were successful
deploy to server / build-and-deploy (push) Successful in 2m50s

- 当竖屏时隐藏footer
This commit is contained in:
2025-10-31 17:04:12 +08:00
parent 37da48c07e
commit 06c30a7ea3

View File

@ -34,4 +34,10 @@
.page-footer {
padding: 0px;
}
@media (max-width: 768px) {
.page-footer {
display: none;
}
}
</style>