fix(core): modal height issue (#8710)

fix AF-1616
This commit is contained in:
pengx17 2024-11-06 02:59:11 +00:00
parent fcd4f8c4ff
commit 584d095895
No known key found for this signature in database
GPG Key ID: 23F23D9E8B3971ED

View File

@ -30,15 +30,21 @@ export const modalContentContainer = style({
alignItems: 'center',
justifyContent: 'center',
borderRadius: 12,
selectors: {
[`${modalContentWrapper}:is([data-mode="max"], [data-mode="fit"], [data-mobile]) &`]:
{
height: '60%',
width: 'calc(100% - 32px)',
paddingRight: 0,
paddingBottom: 32,
alignSelf: 'flex-end',
'@media': {
// for small screen
'screen and (width <= 640px)': {
selectors: {
[`${modalContentWrapper}:is([data-mode="max"], [data-mode="fit"]) &`]: {
height: '60%',
width: 'calc(100% - 32px)',
paddingRight: 0,
paddingBottom: 32,
alignSelf: 'flex-end',
},
},
},
},
selectors: {
[`${modalContentWrapper}[data-mode="max"] &`]: {
width: 'calc(100% - 64px)',
height: 'calc(100% - 64px)',