mirror of
https://github.com/Radiquum/AniX.git
synced 2025-09-04 13:35:36 +05:00
anix/fix: navbar text on white theme
This commit is contained in:
parent
5d2a4cbe67
commit
01e2903e7b
2 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ export const NavBarMobile = (props: { setIsSettingModalOpen: any }) => {
|
|||
|
||||
return (
|
||||
<>
|
||||
<footer className="fixed bottom-0 left-0 right-0 z-50 block w-full h-[70px] font-medium bg-black rounded-t-lg lg:hidden">
|
||||
<footer className="fixed bottom-0 left-0 right-0 z-50 block w-full h-[70px] font-medium text-white bg-black rounded-t-lg lg:hidden">
|
||||
<div className="flex items-center justify-center h-full gap-4">
|
||||
{NavbarItems.map((item) => {
|
||||
if (item.auth && !userStore.isAuth) return <></>;
|
||||
|
|
|
@ -61,7 +61,7 @@ export const NavBarPc = (props: { setIsSettingModalOpen: any }) => {
|
|||
|
||||
return (
|
||||
<>
|
||||
<header className="sticky top-0 left-0 right-0 z-50 hidden w-full h-16 font-medium bg-black rounded-b-lg lg:block">
|
||||
<header className="sticky top-0 left-0 right-0 z-50 hidden w-full h-16 font-medium text-white bg-black rounded-b-lg lg:block">
|
||||
<div className="container flex items-center justify-between h-full px-2 mx-auto">
|
||||
<div className="flex items-center h-full gap-3">
|
||||
{NavbarItems.map((item) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue