Skip to content

Commit

Permalink
chore: Release as 26.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
henningmu committed Dec 5, 2024
1 parent 9f66a07 commit 6d96353
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

Reactist follows [semantic versioning](https://semver.org/) and doesn't introduce breaking changes (API-wise) in minor or patch releases. However, the appearance of a component might change in a minor or patch release so keep an eye on redesigns and make sure your app still looks and feels like you expect it.

# 26.2.3

- [Fix] The `Tab` component's line height is now properly set to 21px.

# 26.2.2

- [Fix] Vertically align the `Notice` component's icon with the first line of text
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"email": "[email protected]",
"url": "http://doist.com"
},
"version": "26.2.2",
"version": "26.2.3",
"license": "MIT",
"homepage": "https://github.com/Doist/reactist#readme",
"repository": {
Expand Down
3 changes: 2 additions & 1 deletion src/tabs/tabs.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
--reactist-tab-border-radius: 20px;
--reactist-tab-border-width: 1px;
--reactist-tab-height: 30px;
--reactist-tab-line-height: 21px;
}

.tab {
Expand All @@ -25,7 +26,7 @@
cursor: pointer;
font-size: var(--reactist-font-size-body);
font-weight: var(--reactist-font-weight-medium);
line-height: var(--reactist-tab-height);
line-height: var(--reactist-tab-line-height);
z-index: 1;
text-decoration: none;
border: var(--reactist-tab-border-width) solid transparent;
Expand Down

0 comments on commit 6d96353

Please sign in to comment.