Skip to content

Commit b761b2e

Browse files
committed
Enhance hero component styles for improved visual appeal; update dropdown menu design with new shadow, backdrop blur, and border styles, and refine link hover effects for better user interaction.
1 parent c47a1dc commit b761b2e

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

src/app/(public)/_components/hero.tsx

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,11 +69,14 @@ export function Hero() {
6969

7070
<ul
7171
tabIndex={0}
72-
className="h-64 p-2 overflow-y-scroll shadow menu dropdown-content bg-base-100 rounded-box w-60"
72+
className="h-64 p-2 overflow-y-auto shadow-lg menu dropdown-content bg-white/95 backdrop-blur-sm rounded-xl w-60 border border-gray-200/50 z-[9999]"
7373
>
7474
{otherLanguages.sort(sortByName).map(language => (
7575
<li key={language}>
76-
<Link href={`/repos/${language.toLowerCase()}`}>
76+
<Link
77+
href={`/repos/${language.toLowerCase()}`}
78+
className="text-gray-700 hover:text-white hover:bg-hacktoberfest-blue rounded-lg transition-colors duration-200 px-3 py-2"
79+
>
7780
{language}
7881
</Link>
7982
</li>

0 commit comments

Comments
 (0)