mirror of
https://github.com/Radiquum/AniX.git
synced 2025-04-05 07:44:38 +00:00
fix: active page mark for home and bookmarks subcategories
This commit is contained in:
parent
447fadd19f
commit
487ae9a1e4
1 changed files with 19 additions and 4 deletions
|
@ -19,6 +19,7 @@ export const Navbar = () => {
|
|||
iconActive: "material-symbols--home",
|
||||
title: "Домашняя",
|
||||
href: "/",
|
||||
categoryHref: "/home",
|
||||
withAuthOnly: false,
|
||||
mobileMenu: false,
|
||||
},
|
||||
|
@ -89,12 +90,20 @@ export const Navbar = () => {
|
|||
>
|
||||
<span
|
||||
className={`iconify ${
|
||||
pathname == link.href ? link.iconActive : link.icon
|
||||
[link.href, link.categoryHref].includes(
|
||||
"/" + pathname.split("/")[1]
|
||||
)
|
||||
? link.iconActive
|
||||
: link.icon
|
||||
} w-6 h-6`}
|
||||
></span>
|
||||
<span
|
||||
className={`${
|
||||
pathname == link.href ? "font-bold" : ""
|
||||
[link.href, link.categoryHref].includes(
|
||||
"/" + pathname.split("/")[1]
|
||||
)
|
||||
? "font-bold"
|
||||
: ""
|
||||
} text-sm sm:text-base`}
|
||||
>
|
||||
{link.title}
|
||||
|
@ -154,14 +163,20 @@ export const Navbar = () => {
|
|||
>
|
||||
<span
|
||||
className={`iconify ${
|
||||
pathname == link.href
|
||||
[link.href, link.categoryHref].includes(
|
||||
"/" + pathname.split("/")[1]
|
||||
)
|
||||
? link.iconActive
|
||||
: link.icon
|
||||
} w-6 h-6`}
|
||||
></span>
|
||||
<span
|
||||
className={`${
|
||||
pathname == link.href ? "font-bold" : ""
|
||||
[link.href, link.categoryHref].includes(
|
||||
"/" + pathname.split("/")[1]
|
||||
)
|
||||
? "font-bold"
|
||||
: ""
|
||||
}`}
|
||||
>
|
||||
{link.title}
|
||||
|
|
Loading…
Add table
Reference in a new issue