We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ed0c6e8 commit f5e93b4Copy full SHA for f5e93b4
src/app/index.tsx
@@ -269,7 +269,7 @@ const Index = () => {
269
<TopMenu />
270
<div
271
className={
272
- 'h-fit dark:bg-black' + (page !== 'list' ? ' hidden' : '')
+ 'h-fit bg-[rgb(246,246,246)] dark:bg-black' + (page !== 'list' ? ' hidden' : '')
273
}
274
>
275
<div className="p-4">
@@ -292,7 +292,7 @@ const Index = () => {
292
/>
293
</div>
294
{page !== 'list' && (
295
- <div className="h-fit min-h-full p-4 dark:bg-black">
+ <div className="h-fit min-h-full p-4 bg-[rgb(246,246,246)] dark:bg-black">
296
<ProfessorOverview
297
professor={convertToProfOnly(page)}
298
grades={grades[searchQueryLabel(convertToProfOnly(page))]}
0 commit comments