File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -319,17 +319,17 @@ const CatalogueContent = () => {
319
319
320
320
< div className = "flex items-center gap-2 p-7" >
321
321
< div >
322
- < p className = "text-s font-semibold text-white/80" >
322
+ < p className = "text-s font-semibold text-gray-700 dark:text- white/80" >
323
323
{ subject ?. split ( "[" ) [ 1 ] ?. replace ( "]" , "" ) }
324
324
</ p >
325
- < h2 className = "text-2xl font-extrabold text-white md:text-3xl" >
325
+ < h2 className = "text-2xl font-extrabold text-gray-700 dark:text- white md:text-3xl" >
326
326
{ subject ?. split ( " [" ) [ 0 ] }
327
327
</ h2 >
328
328
</ div >
329
329
< div className = "mt-7" >
330
330
< button onClick = { handlePinToggle } >
331
331
< Pin
332
- className = { `h-7 w-7 ${ pinned ? "fill-[#A78BFA]" : "" } stroke-white` }
332
+ className = { `h-7 w-7 ${ pinned ? "fill-[#A78BFA]" : "" } stroke-gray-700 dark:stroke- white` }
333
333
/>
334
334
</ button >
335
335
</ div >
Original file line number Diff line number Diff line change @@ -58,14 +58,14 @@ function Navbar() {
58
58
59
59
< div className = "mt-3 hidden md:flex" >
60
60
< Link href = "/pinned" >
61
- < div className = "ml-2 flex items-center gap-2 rounded-full border border-[#3A3745] px-4 py-2 text-sm font-semibold text-white transition hover:bg-[#1A1823]" >
61
+ < div className = "ml-2 flex items-center gap-2 rounded-full border bg-[#e8e9ff] dark:bg-black border-[#3A3745] px-4 py-2 text-sm font-semibold dark: text-white transition hover:bg-slate-50 text-gray-700 dark: hover:bg-[#1A1823]" >
62
62
< Pin className = "h-4 w-4" />
63
63
Pinned Subjects
64
64
</ div >
65
65
</ Link >
66
66
< div className = "ml-2 hidden md:flex" >
67
67
< Link href = "/request" >
68
- < div className = "ml-2 flex items-center gap-2 rounded-full border border-[#3A3745] px-4 py-2 text-sm font-semibold text-white transition hover:bg-[#1A1823]" >
68
+ < div className = "ml-2 flex items-center gap-2 rounded-full border bg-[#e8e9ff] dark:bg-black border-[#3A3745] px-4 py-2 text-sm font-semibold dark: text-white transition hover:bg-slate-50 text-gray-700 dark: hover:bg-[#1A1823]" >
69
69
< ArrowUpRight className = "h-4 w-4" />
70
70
Paper Request
71
71
</ div >
@@ -86,7 +86,7 @@ function Navbar() {
86
86
</ div >
87
87
88
88
< Link href = { pathname === "/upload" ? "/" : "/upload" } >
89
- < div className = "flex items-center gap-2 rounded-full border border-[#3A3745] px-4 py-2 text-sm font-semibold text-white transition hover:bg-[#1A1823]" >
89
+ < div className = "flex items-center gap-2 rounded-full border bg-[#e8e9ff] dark:bg-black border-[#3A3745] px-4 py-2 text-sm font-semibold dark: text-white transition hover:bg-slate-50 text-gray-700 dark: hover:bg-[#1A1823]" >
90
90
< ArrowDownLeftIcon className = "h-4 w-4 rotate-90" />
91
91
< span >
92
92
{ pathname === "/upload" ? "Search Papers" : "Upload Papers" }
Original file line number Diff line number Diff line change @@ -145,7 +145,7 @@ function SearchBarChild({
145
145
</ div >
146
146
< span
147
147
id = "subject"
148
- className = "items-center text-sm tracking-wide text-white sm:text-base"
148
+ className = "items-center text-sm tracking-wide text-black dark:text- white sm:text-base"
149
149
>
150
150
{ suggestion }
151
151
</ span >
You can’t perform that action at this time.
0 commit comments