Skip to content

Commit

Permalink
fix: grid glitches sometimes
Browse files Browse the repository at this point in the history
  • Loading branch information
sapkra committed Jun 30, 2024
1 parent 43c17dd commit 87ef225
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/fragments/widget/Widget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ const widget = tv({
},
variants: {
size: {
sm: 'lg:col-span-1',
md: 'lg:col-span-2',
lg: 'lg:col-span-3',
sm: 'col-span-1',
md: 'col-span-1 lg:col-span-2',
lg: 'col-span-1 lg:col-span-2 2xl:col-span-3',
},
variant: {
solid: "border-none",
Expand Down

0 comments on commit 87ef225

Please sign in to comment.