Skip to content

Commit

Permalink
fix(mobile): workaround for tag modal blink (#8985)
Browse files Browse the repository at this point in the history
workaround for fix AF-1822
  • Loading branch information
pengx17 committed Dec 3, 2024
1 parent 671885d commit af81c95
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions packages/frontend/component/src/ui/modal/styles.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,12 +173,12 @@ export const modalContent = style({
selectors: {
'[data-full-screen="true"] &': {
vars: {
[widthVar]: '100vw',
[heightVar]: '100vh',
[minHeightVar]: '100vh',
[widthVar]: '100dvw',
[heightVar]: '100dvh',
[minHeightVar]: '100dvh',
},
maxWidth: '100vw',
maxHeight: '100vh',
maxWidth: '100dvw',
maxHeight: '100dvh',
borderRadius: 0,
},
},
Expand Down

0 comments on commit af81c95

Please sign in to comment.