Skip to content

Commit

Permalink
Fix tooltip font (#59307)
Browse files Browse the repository at this point in the history
* Fix tooltip font.

* Update changelog.

* Move changelog entry.
  • Loading branch information
jasmussen committed Feb 23, 2024
1 parent 954ecae commit 6889c88
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
4 changes: 4 additions & 0 deletions packages/components/CHANGELOG.md
Expand Up @@ -2,6 +2,10 @@

## Unreleased

### Bug Fix

- `Tooltip`: Explicitly set system font to avoid CSS bleed ([#59307](https://github.com/WordPress/gutenberg/pull/59307)).

## 27.0.0 (2024-02-21)

### Breaking Changes
Expand Down
3 changes: 2 additions & 1 deletion packages/components/src/tooltip/style.scss
@@ -1,5 +1,6 @@
.components-tooltip {
background: $black; // TODO: Discuss with designers.
background: $black;
font-family: $default-font;
border-radius: $radius-block-ui;
color: $gray-100;
text-align: center;
Expand Down

1 comment on commit 6889c88

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Flaky tests detected in 6889c88.
Some tests passed with failed attempts. The failures may not be related to this commit but are still reported for visibility. See the documentation for more information.

🔍 Workflow run URL: https://github.com/WordPress/gutenberg/actions/runs/8017691278
📝 Reported issues:

Please sign in to comment.