Skip to content

Commit

Permalink
CreatePlan: align text in cards
Browse files Browse the repository at this point in the history
  • Loading branch information
makinbacon21 committed Nov 18, 2024
1 parent 5f2b138 commit 1da4708
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions components/CreatePlan.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export default function CreatePlan(props: any) {
<Card
key={course.id}
className={
"bg-light_foreground min-h-14 max-h-14 rounded-sm scroll-none drop-shadow-lg transition-colors"
"bg-light_foreground min-h-16 max-h-16 rounded-sm scroll-none drop-shadow-lg transition-colors"
}
shadow="sm"

Expand All @@ -145,13 +145,11 @@ export default function CreatePlan(props: any) {
/>

<CardHeader className="justify-between">

<div className="ml-2 lg:text-base truncate text-bold">
{course.subject} {""} {course.courseNumber}
<div className="text-tiny ">
{course.courseTitle.replace(/&amp;/g, "&")}
</div>

</div>

<Button
Expand Down Expand Up @@ -264,9 +262,7 @@ export default function CreatePlan(props: any) {
</div>

<div

className="flex flex-col h-[45vh] overflow-y-scroll gap-3 scrollbar-thin scrollbar-thumb-accent-500 scrollbar-track-transparent"

id="scrollMe"
>
<CoursesList />
Expand Down

0 comments on commit 1da4708

Please sign in to comment.