diff --git a/docs/updating/6-0.md b/docs/updating/6-0.md index 7c70f0b8d22..321daf2f0e3 100644 --- a/docs/updating/6-0.md +++ b/docs/updating/6-0.md @@ -344,11 +344,11 @@ Ensure `null` is not passed in as a value to the `placeholder` property. We reco ```css ion-modal .modal-wrapper { - ...; + /* Any custom styles here */ } ion-modal ion-backdrop { - ...; + /* Any custom styles here */ } ``` @@ -356,11 +356,11 @@ ion-modal ion-backdrop { ```css ion-modal::part(content) { - ...; + /* Any custom styles here */ } ion-modal::part(backdrop) { - ...; + /* Any custom styles here */ } ``` @@ -372,15 +372,15 @@ ion-modal::part(backdrop) { ```css ion-popover .popover-arrow { - ...; + /* Any custom styles here */ } ion-popover ion-backdrop { - ...; + /* Any custom styles here */ } ion-popover .popover-content { - ...; + /* Any custom styles here */ } ``` @@ -388,15 +388,15 @@ ion-popover .popover-content { ```css ion-popover::part(arrow) { - ...; + /* Any custom styles here */ } ion-popover::part(backdrop) { - ...; + /* Any custom styles here */ } ion-popover::part(content) { - ...; + /* Any custom styles here */ } ```