File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -269,7 +269,8 @@ const Index = () => {
269269 < TopMenu />
270270 < div
271271 className = {
272- 'h-fit dark:bg-black' + ( page !== 'list' ? ' hidden' : '' )
272+ 'h-fit bg-[rgb(246,246,246)] dark:bg-black' +
273+ ( page !== 'list' ? ' hidden' : '' )
273274 }
274275 >
275276 < div className = "p-4" >
@@ -292,7 +293,7 @@ const Index = () => {
292293 />
293294 </ div >
294295 { page !== 'list' && (
295- < div className = "h-fit min-h-full p-4 dark:bg-black" >
296+ < div className = "h-fit min-h-full p-4 bg-[rgb(246,246,246)] dark:bg-black" >
296297 < ProfessorOverview
297298 professor = { convertToProfOnly ( page ) }
298299 grades = { grades [ searchQueryLabel ( convertToProfOnly ( page ) ) ] }
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ const ExplanatoryPage = ({
2525 next ?: number ;
2626} ) => {
2727 return (
28- < div className = "h-full w-full flex flex-col dark:bg-black" >
28+ < div className = "h-full w-full flex flex-col bg-[rgb(246,246,246)] dark:bg-black" >
2929 < img
3030 src = { src }
3131 alt = "tutorial descriptive"
You can’t perform that action at this time.
0 commit comments