Skip to content

Commit 0258b05

Browse files
committed
fix link styles
1 parent ba1e2d4 commit 0258b05

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/components/Navbar.jsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ export const Navbar = () => {
2525
exit={{ opacity: 0 }}
2626
>
2727
<div className="w-[180px]">
28-
<a className="navbar-link" href="#home" aria-label="Home">
28+
<a className="unstyled navbar-link" href="#home" aria-label="Home">
2929
<div className="flex justify-start items-center grow basis-0">
3030
<div className="text-white mr-2 text-6xl">
3131
<CodeGenieLogo />
@@ -46,7 +46,7 @@ export const Navbar = () => {
4646
<div className="hidden md:flex h-full pb-2">
4747
{navbarLinks.map(({ href, label, ariaLabel }) => (
4848
<a
49-
className="navbar-link"
49+
className="unstyled navbar-link"
5050
href={href}
5151
aria-label={ariaLabel}
5252
key={label}
@@ -64,7 +64,7 @@ export const Navbar = () => {
6464
>
6565
<div className="grow basis-0 justify-end hidden md:flex w-[180px]">
6666
{/* <a
67-
className="text-white custom-border-gray rounded-xl
67+
className="unstyled text-white custom-border-gray rounded-xl
6868
bg-customDarkBg2 hover:bg-customDarkBg3 border-gray-700 pl-6 pr-8 pt-2 pb-2 text-sm flex"
6969
href="https://github.com/matt765/Tidestream"
7070
target="_blank"
@@ -110,7 +110,7 @@ export const Navbar = () => {
110110
</a>
111111
))}
112112
{/* <a
113-
className="text-white custom-border-gray rounded-xl
113+
className="unstyled text-white custom-border-gray rounded-xl
114114
bg-customDarkBg2 hover:bg-customDarkBg3 border-gray-700 pl-6 pr-8 pt-2 pb-2 text-sm flex"
115115
href="https://github.com/matt765/Tidestream"
116116
target="_blank"

src/styles/Theme.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,6 @@ html {
6161
font-display: var(--fontsource-Inter-font-display, optional);
6262
}
6363

64-
/* a {
64+
a:not(.unstyled) {
6565
@apply underline text-blue-600 hover:text-blue-800 visited:text-purple-600
66-
} */
66+
}

0 commit comments

Comments
 (0)