Merge pull request #149 from hotlcc/develop-20240604-1

This commit is contained in:
jxxghp
2024-06-04 15:42:36 +08:00
committed by GitHub

View File

@@ -7,11 +7,12 @@
.v-dialog > .v-overlay__content {
margin: 0;
max-width: calc(100% - 1rem);
max-height: calc(100% - 1rem);
max-height: calc(100% - env(safe-area-inset-top) - env(safe-area-inset-bottom) - 1rem);
}
.v-dialog--fullscreen > .v-overlay__content {
margin-top: env(safe-area-inset-top);
max-width: 100%;
max-height: 100%;
max-height: calc(100% - env(safe-area-inset-top));
}
}