fix(modal): properly inherit border radius for modals on Safari (#20887)

fixes #20878
This commit is contained in:
Liam DeBeasi
2020-03-30 11:56:46 -04:00
committed by GitHub
parent 9b534bd43f
commit bd64509bae

View File

@ -41,9 +41,8 @@ html.ios ion-modal.modal-card .ion-page > ion-header > ion-toolbar:first-of-type
// .ion-page needs to explicitly inherit
// the border radius in safari otherwise
// a card modal with ion-content[fullscreen=true]
// will not show border radius properly
html.ios ion-modal.modal-card .ion-page {
// modals will not show border radius properly
html.ios ion-modal .ion-page {
border-radius: inherit;
}