fix: mobile panel use 100% instead of 100vh for iframe compat

This commit is contained in:
Youzini-afk
2026-03-27 23:50:10 +08:00
parent 0cffbc90a5
commit 4f9e75234e

View File

@@ -2086,9 +2086,14 @@
/* ==================== 响应式 ==================== */
@media (max-width: 768px) {
#st-bme-panel-overlay {
align-items: stretch;
justify-content: stretch;
}
#st-bme-panel {
width: 100vw;
height: 100vh;
width: 100%;
height: 100%;
max-width: none;
max-height: none;
border-radius: 0;