fix(layout): incorrect padding of screen safe area

This commit is contained in:
Jacky 2025-02-26 12:55:50 +08:00
parent ab46d1de7e
commit 2dbb2f5f79
No known key found for this signature in database
GPG key ID: 215C21B10DF38B4D

View file

@ -205,16 +205,4 @@ body {
.ant-layout-footer { .ant-layout-footer {
text-align: center; text-align: center;
} }
@media (orientation: landscape) {
.full-screen-wrapper {
padding: 0 env(safe-area-inset-right) 0 env(safe-area-inset-left);
}
}
@media (orientation: portrait) {
.full-screen-wrapper {
padding: env(safe-area-inset-top) 0 env(safe-area-inset-bottom);
}
}
</style> </style>