IT
Ionic modal resize 예시
agnusdei1207
2023. 4. 21. 00:14
반응형
SMALL
ion-modal {
--border-radius: 0.5rem;
--width: 30rem;
--height: 27rem;
}
ion-modal {
--border-radius: 8px;
--max-height: max-content;
--max-width: max-content;
--height: max-content;
--width: max-content;
--backdrop-opacity: 0.6;
--padding: 8px;
--overflow: visible;
.modal-wrapper {
height: auto;
}
.ion-page {
max-height: max-content;
}
}
ion-modal + ion-modal {
--backdrop-opacity: 0.6 !important;
}
반응형
LIST