Skip to content

Commit a219d6b

Browse files
authored
fix(integrations page): overflow on integrations card loading states (supabase#40110)
1 parent 04c2fd3 commit a219d6b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

apps/studio/components/interfaces/Integrations/Landing/IntegrationCard.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ export const IntegrationLoadingCard = () => {
2626
<ShimmeringLoader className="w-full h-full bg-white border rounded-md" />
2727
</div>
2828
<div className="grow basis-0 w-full flex flex-col justify-between items-start gap-y-2">
29-
<div className="flex-col justify-start items-start gap-y-1 flex">
30-
<ShimmeringLoader className="w-20 py-2.5" />
31-
<ShimmeringLoader className="w-56 py-2.5" />
29+
<div className="w-full flex-col justify-start items-start gap-y-1 flex">
30+
<ShimmeringLoader className="w-3/4 py-2.5" />
31+
<ShimmeringLoader className="w-full py-2.5" />
3232
</div>
3333
</div>
3434
</div>

0 commit comments

Comments
 (0)