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 4
4
" standard" ,
5
5
" plugin:tailwindcss/recommended" ,
6
6
" prettier"
7
- ]
7
+ ],
8
+ "ignorePatterns" : [" /components/ui/*" ]
8
9
}
Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ const NavContent = () => {
32
32
href = { link . route }
33
33
className = { `${
34
34
isActive
35
- ? "primary-gradient text-light-900 rounded-lg "
35
+ ? "primary-gradient rounded-lg text-light-900"
36
36
: "text-dark300_light900"
37
37
} flex items-center justify-start gap-4 bg-transparent p-4`}
38
38
>
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ import GlobalSearch from "@/components/shared/search/GlobalSearch";
9
9
10
10
const Navbar = ( ) => {
11
11
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" >
13
13
< Link href = "/" className = "flex items-center gap-1" >
14
14
< Image
15
15
src = "/assets/images/site-logo.svg"
Original file line number Diff line number Diff line change @@ -39,11 +39,11 @@ const Theme = () => {
39
39
/>
40
40
) }
41
41
</ 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 " >
43
43
{ themes . map ( ( theme ) => (
44
44
< MenubarItem
45
45
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 "
47
47
onClick = { ( ) => {
48
48
setMode ( theme . value ) ;
49
49
You can’t perform that action at this time.
0 commit comments