Skip to content

Commit 83cfa7e

Browse files
Card rounding fix (#34)
* fix: card component rounding fix * chore: cleanup changeset * chore: version bump
1 parent 97164c0 commit 83cfa7e

4 files changed

Lines changed: 8 additions & 7 deletions

File tree

.changeset/easy-pears-walk.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/ui/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @hoodieshq/ms-tools-ui
22

3+
## 0.8.1
4+
5+
### Patch Changes
6+
7+
- Card component - rounding fix
8+
39
## 0.8.0
410

511
### Minor Changes

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@hoodieshq/ms-tools-ui",
3-
"version": "0.8.0",
3+
"version": "0.8.1",
44
"description": "Reusable React components built with React, Tailwind CSS, and Shadcn, forming the visual building blocks of microsites",
55
"main": ".",
66
"types": "./dist/index.d.ts",

packages/ui/src/components/card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ function Card({
1111
<div
1212
data-slot="card"
1313
className={cn(
14-
'bg-card text-card-foreground border-table-stroke flex flex-nowrap gap-2 rounded-xl border px-3 py-2',
14+
'bg-card text-card-foreground border-table-stroke flex flex-nowrap gap-2 rounded-sm border px-3 py-2',
1515
className
1616
)}
1717
{...props}

0 commit comments

Comments
 (0)