Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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
1 change: 1 addition & 0 deletions packages/ui/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- `Badge`: Add border, update text color, and apply `neutral-strong` background to `none` intent for better contrast against neutral surfaces ([#76356](https://github.com/WordPress/gutenberg/pull/76356)).
- `Notice`: Improve narrow layout by letting description and actions span the icon column when a title is present ([#76202](https://github.com/WordPress/gutenberg/pull/76202)).
- `Notice`: Use `Text` component for `Title` and `Description` typography ([#75870](https://github.com/WordPress/gutenberg/pull/75870)).
- `Card`, `CollapsibleCard`: update padding to match legacy `Card` component ([#76368](https://github.com/WordPress/gutenberg/pull/76368)).

## 0.8.0 (2026-03-04)

Expand Down
4 changes: 2 additions & 2 deletions packages/ui/src/card/style.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

@layer wp-ui-components {
.root {
--wp-ui-card-padding: var(--wpds-dimension-padding-xl);
--wp-ui-card-header-content-gap: var(--wpds-dimension-gap-lg);
--wp-ui-card-padding: var(--wpds-dimension-padding-2xl);
--wp-ui-card-header-content-gap: var(--wpds-dimension-gap-xl);

display: flex;
flex-direction: column;
Expand Down
Loading