Skip to content

Commit 55a5fa7

Browse files
committed
fix(ui): make 'View' button text visible on hover in docs/components page
1 parent b98d7ea commit 55a5fa7

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ yarn-error.log*
3333

3434
# env files (can opt-in for committing if needed)
3535
.env
36+
.env.local
3637

3738
# vercel
3839
.vercel

src/components/ui/bento-grid/Bento.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ const BentoCard = ({
102102
>
103103
<Link
104104
href={props?.href}
105-
className="flex items-center text-sm pointer-events-auto hover:bg-[var(--glass-color-2)] p-2 rounded-xl"
105+
className="flex items-center text-sm pointer-events-auto hover:bg-[var(--glass-color-2)] hover:text-white p-2 rounded-xl"
106106
>
107107
<span>View</span>
108108
<ArrowRightIcon className="ms-2 h-4 w-4" />

0 commit comments

Comments
 (0)