Skip to content

Commit

Permalink
scheduler: unbreak other page ui
Browse files Browse the repository at this point in the history
  • Loading branch information
makinbacon21 committed Nov 12, 2024
1 parent 642e193 commit aa3f361
Show file tree
Hide file tree
Showing 7 changed files with 6 additions and 71 deletions.
13 changes: 0 additions & 13 deletions app/about/layout.tsx

This file was deleted.

13 changes: 0 additions & 13 deletions app/admin/layout.tsx

This file was deleted.

13 changes: 0 additions & 13 deletions app/calendar/layout.tsx

This file was deleted.

2 changes: 1 addition & 1 deletion app/calendar/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export default async function CalendarPage() {

//let times = await getUniqueStartEndTimes();
return (
<div className="grid grid-cols-3 p-4 -mt-20 w-screen absolute start-0 px-32 gap-20">
<div className="grid grid-cols-3 p-4 w-screen absolute start-0 px-32 gap-20">
<div className=" col-start-1 h-[70vh] w-[57vw] col-span-2 font-sans font-normal">
<Calendar events={events} />
</div>
Expand Down
13 changes: 0 additions & 13 deletions app/login/layout.tsx

This file was deleted.

13 changes: 0 additions & 13 deletions app/rating/layout.tsx

This file was deleted.

10 changes: 5 additions & 5 deletions app/rating/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,17 +182,17 @@ export default function RatingPage() {
<></>
)}

<Card className=" justify-center items-center place-items-center">
<Card className="my-10 mx-1 md:mx-4 justify-center items-center place-items-center">
<CardHeader className="">
<h1 className=" text-center ml-auto mr-auto col-span-3 row-start-1 row-span-1 text-2xl mb-2 mt-2">
Leave a Rating
</h1>
</CardHeader>
<CardBody className="flex gap-5 md:px-20 px-10">
<CardBody className="flex gap-5 px-4 md:px-20 w-full">
<Autocomplete
isRequired
aria-label="Select Professor"
className=" max-w-xs "
className=" max-w-sm "
label="Select Professor"
labelPlacement="outside"
placeholder="Select Professor"
Expand All @@ -219,7 +219,7 @@ export default function RatingPage() {
<Autocomplete
isRequired
aria-label="Select Class"
className=" max-w-xs "
className=" max-w-sm "
label="Select Class"
labelPlacement="outside"
placeholder="Select Class"
Expand Down Expand Up @@ -331,7 +331,7 @@ export default function RatingPage() {
isRequired
selectedKeys={[grade]}
placeholder="SelectGrade"
className="max-w-xs"
className="max-w-sm"
onChange={handleSelectionChange}
>
{gradeOptions.map((grade) => (
Expand Down

0 comments on commit aa3f361

Please sign in to comment.