Skip to content

Commit 15003a5

Browse files
Merge pull request #1079 from NordicSemiconductor/fix/dropdown-chevron-size
Fix/dropdown chevron size
2 parents d75dbb8 + a3cc990 commit 15003a5

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Changelog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ This project does _not_ adhere to
77
[Semantic Versioning](https://semver.org/spec/v2.0.0.html) but contrary to it
88
every new version is a new major version.
99

10+
## 235.0.0 - 2025-11-06
11+
12+
### Fixed
13+
14+
- A text sizing problem with Dropdown's chevron.
15+
1016
## 234.0.0 - 2025-10-21
1117

1218
### Changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@nordicsemiconductor/pc-nrfconnect-shared",
3-
"version": "234.0.0",
3+
"version": "235.0.0",
44
"description": "Shared commodities for developing pc-nrfconnect-* packages",
55
"repository": {
66
"type": "git",

src/Dropdown/Dropdown.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export default <T,>({
9494
<span
9595
className={`mdi mdi-chevron-down ${classNames(
9696
isActive && 'tw-rotate-180',
97-
size === 'sm' ? 'tw-text-base' : 'tw-text-lg',
97+
size === 'sm' ? 'tw-text-base' : 'tw-text-lg/none',
9898
)}`}
9999
/>
100100
</button>

0 commit comments

Comments
 (0)