Skip to content

Commit

Permalink
fix: card columns
Browse files Browse the repository at this point in the history
  • Loading branch information
fran-ink committed Mar 4, 2025
1 parent 466cd22 commit 8b96203
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@inkonchain/ink-kit",
"version": "0.9.1-beta.16",
"version": "0.9.1-beta.18",
"description": "",
"main": "dist/index.cjs.js",
"module": "dist/index.es.js",
Expand Down
2 changes: 1 addition & 1 deletion src/components/Card/Content/CardInfos.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const CardInfos = ({ children, className }: CardInfosProps) => {
return (
<div
className={classNames(
"ink:grid ink:grid-cols-[repeat(auto-fit,minmax(max(200px,calc(100%/3)),1fr))] ink:xl:grid-cols-2 ink:gap-1 ink:box-border",
"ink:grid ink:grid-cols-[repeat(auto-fit,minmax(max(200px,calc(100%/3)),1fr))] ink:gap-1 ink:box-border",
className
)}
>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Card/Content/LargeLinks.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export const LargeLinks = ({ children, className }: LargeLinksProps) => {
return (
<div
className={classNames(
"ink:grid ink:grid-cols-[repeat(auto-fit,minmax(max(200px,calc(100%/3)),1fr))] ink:xl:grid-cols-2 ink:gap-1 ink:box-border",
"ink:grid ink:grid-cols-[repeat(auto-fit,minmax(max(200px,calc(100%/3)),1fr))] ink:gap-1 ink:box-border",
className
)}
>
Expand Down

0 comments on commit 8b96203

Please sign in to comment.