Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/components/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Bug fixes

- `Modal`: Fix modal headings and labels to use proper editor text color instead of wp-admin colors ([#71311](https://github.com/WordPress/gutenberg/pull/71311)).

## 30.2.0 (2025-08-20)

### Bug fixes
Expand Down
2 changes: 2 additions & 0 deletions packages/components/src/modal/style.scss
Original file line number Diff line number Diff line change
Expand Up @@ -136,6 +136,7 @@
left: 0;

.components-modal__header-heading {
color: $gray-900;
font-size: 1.2rem;
font-weight: 600;
}
Expand Down Expand Up @@ -174,6 +175,7 @@

// Modal contents.
.components-modal__content {
color: $gray-900;
flex: 1;
margin-top: $header-height + $grid-unit-10;
// Small top padding required to avoid cutting off the visible outline when the first child element is focusable.
Expand Down
Loading