File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed
Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 44 " standard" ,
55 " plugin:tailwindcss/recommended" ,
66 " prettier"
7- ]
7+ ],
8+ "ignorePatterns" : [" /components/ui/*" ]
89}
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ const NavContent = () => {
3232 href = { link . route }
3333 className = { `${
3434 isActive
35- ? "primary-gradient text-light-900 rounded-lg "
35+ ? "primary-gradient rounded-lg text-light-900"
3636 : "text-dark300_light900"
3737 } flex items-center justify-start gap-4 bg-transparent p-4`}
3838 >
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import GlobalSearch from "@/components/shared/search/GlobalSearch";
99
1010const Navbar = ( ) => {
1111 return (
12- < nav className = "flex-between background-light900_dark200 shadow-light-300 fixed z-50 w-full gap-5 p-6 dark:shadow-none sm:px-12" >
12+ < nav className = "flex-between background-light900_dark200 fixed z-50 w-full gap-5 p-6 shadow-light-300 dark:shadow-none sm:px-12" >
1313 < Link href = "/" className = "flex items-center gap-1" >
1414 < Image
1515 src = "/assets/images/site-logo.svg"
Original file line number Diff line number Diff line change @@ -39,11 +39,11 @@ const Theme = () => {
3939 />
4040 ) }
4141 </ MenubarTrigger >
42- < MenubarContent className = "bg-light-900 dark:border-dark-400 dark:bg-dark-300 absolute right-[-3rem] mt-3 min-w-[120px] rounded border py-2" >
42+ < MenubarContent className = "absolute right-[-3rem] mt-3 min-w-[120px] rounded border bg-light-900 py-2 dark:border-dark-400 dark:bg-dark-300 " >
4343 { themes . map ( ( theme ) => (
4444 < MenubarItem
4545 key = { theme . value }
46- className = "focus:bg-light-800 dark:focus:bg-dark-400 flex cursor-pointer items-center gap-4 px-2.5 py-2"
46+ className = "flex cursor-pointer items-center gap-4 px-2.5 py-2 focus:bg-light-800 dark:focus:bg-dark-400 "
4747 onClick = { ( ) => {
4848 setMode ( theme . value ) ;
4949
You can’t perform that action at this time.
0 commit comments