Skip to content

Commit 124d900

Browse files
authored
fix: dashboard placeholder pattern overflow (#59)
Add `overflow-hidden` class to the last placeholder block to keep the stripes from overflowing.
1 parent e41b041 commit 124d900

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

resources/js/pages/dashboard.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ export default function Dashboard() {
2626
<PlaceholderPattern className="absolute inset-0 size-full stroke-neutral-900/20 dark:stroke-neutral-100/20" />
2727
</div>
2828
</div>
29-
<div className="border-sidebar-border/70 dark:border-sidebar-border relative min-h-[100vh] flex-1 rounded-xl border md:min-h-min">
29+
<div className="border-sidebar-border/70 dark:border-sidebar-border relative min-h-[100vh] flex-1 overflow-hidden rounded-xl border md:min-h-min">
3030
<PlaceholderPattern className="absolute inset-0 size-full stroke-neutral-900/20 dark:stroke-neutral-100/20" />
3131
</div>
3232
</div>

0 commit comments

Comments
 (0)