Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/app/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,8 @@ const Index = () => {
<TopMenu />
<div
className={
'h-fit dark:bg-black' + (page !== 'list' ? ' hidden' : '')
'h-fit bg-[rgb(246,246,246)] dark:bg-black' +
(page !== 'list' ? ' hidden' : '')
}
>
<div className="p-4">
Expand All @@ -292,7 +293,7 @@ const Index = () => {
/>
</div>
{page !== 'list' && (
<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">
<ProfessorOverview
professor={convertToProfOnly(page)}
grades={grades[searchQueryLabel(convertToProfOnly(page))]}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Landing.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const ExplanatoryPage = ({
next?: number;
}) => {
return (
<div className="h-full w-full flex flex-col dark:bg-black">
<div className="h-full w-full flex flex-col bg-[rgb(246,246,246)] dark:bg-black">
<img
src={src}
alt="tutorial descriptive"
Expand Down