Skip to content

Commit 0e01dfc

Browse files
fix(kanban): adjust alignment of items in KanbanCard for better visual consistency
1 parent 94d4121 commit 0e01dfc

3 files changed

Lines changed: 5 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# [Releases](https://github.com/Tracktor/design-system/releases)
22

3-
## v4.33.0
3+
## v4.33.1
44

5-
### Features
6-
- Add multi-line title support in KanbanCard and update story for demonstration
5+
### Fix
6+
- Adjust alignment of items in KanbanCard for better visual consistency

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@tracktor/design-system",
33
"description": "Tracktor Design System",
44
"sideEffects": false,
5-
"version": "4.33.0",
5+
"version": "4.33.1",
66
"license": "ISC",
77
"type": "module",
88
"types": "./dist/src/main.d.ts",

src/components/DataDisplay/Kanban/components/KanbanCard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ const KanbanCard = memo(({ item, activeItemId, gutterSize, onClickItem, variant
134134
</Typography>
135135
</Tooltip>
136136
)}
137-
<Stack direction="row" alignItems="center" spacing={1}>
137+
<Stack direction="row" alignItems="flex-start" spacing={1}>
138138
<Tooltip
139139
title={title}
140140
enterDelay={TOOLTIP_DELAYS.enterDelay}

0 commit comments

Comments
 (0)