diff --git a/CHANGELOG.md b/CHANGELOG.md index cb9866410..730877532 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package-lock.json b/package-lock.json index 14d868cb9..0ca01ebbf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@doist/reactist", - "version": "26.2.2", + "version": "26.2.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@doist/reactist", - "version": "26.2.2", + "version": "26.2.3", "hasInstallScript": true, "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 3ad5f1854..5b8c44f5b 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "email": "henning@doist.com", "url": "http://doist.com" }, - "version": "26.2.2", + "version": "26.2.3", "license": "MIT", "homepage": "https://github.com/Doist/reactist#readme", "repository": { diff --git a/src/tabs/tabs.module.css b/src/tabs/tabs.module.css index 0d33feeb4..38e6e62f3 100644 --- a/src/tabs/tabs.module.css +++ b/src/tabs/tabs.module.css @@ -15,6 +15,7 @@ --reactist-tab-border-radius: 20px; --reactist-tab-border-width: 1px; --reactist-tab-height: 30px; + --reactist-tab-line-height: 21px; } .tab { @@ -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;