fix(ios): mobile modal occlusion issues (#11427)

Close [BS-2925](https://linear.app/affine-design/issue/BS-2925/移动端-dialog-遮挡相关)
This commit is contained in:
L-Sun
2025-04-03 01:51:57 +00:00
parent 80a663efe7
commit b53b2acfe3
7 changed files with 49 additions and 6 deletions
@@ -2,6 +2,17 @@ import { fontXSStyle, panelBaseStyle } from '@blocksuite/affine-shared/styles';
import { css } from 'lit';
export const embedCardModalStyles = css`
.embed-card-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
z-index: 1000;
height: 100%;
transition: height 0.3s ease-in-out;
}
.embed-card-modal-mask {
position: absolute;
left: 0;