Skip to content

Commit

Permalink
style: update css blocks
Browse files Browse the repository at this point in the history
  • Loading branch information
brandyscarney committed May 1, 2023
1 parent 6dd5a4b commit 21c3432
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions docs/updating/6-0.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,23 +344,23 @@ 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 */
}
```

**After**

```css
ion-modal::part(content) {
...;
/* Any custom styles here */
}

ion-modal::part(backdrop) {
...;
/* Any custom styles here */
}
```

Expand All @@ -372,31 +372,31 @@ 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 */
}
```

**After**

```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 */
}
```

Expand Down

0 comments on commit 21c3432

Please sign in to comment.