Skip to content

Commit

Permalink
fix: quick fix the ui
Browse files Browse the repository at this point in the history
  • Loading branch information
devsargam committed Oct 2, 2024
1 parent c0a832d commit cba0888
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions src/components/CourseView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,15 @@ export const CourseView = ({
rest: string[];
course: any;
courseContent:
| {
folder: true;
value: ChildCourseContent[];
}
| {
folder: false;
value: ChildCourseContent;
}
| null;
| {
folder: true;
value: ChildCourseContent[];
}
| {
folder: false;
value: ChildCourseContent;
}
| null;
nextContent: any;
searchParams: QueryParams;
possiblePath: string;
Expand All @@ -39,7 +39,7 @@ export const CourseView = ({
: courseContent?.value.type;
return (
<div className="flex w-full flex-col gap-8 pb-16 pt-8 xl:pt-[9px]">
<div className="flex flex-col gap-4 xl:pt-44">
<div className="flex flex-col gap-4 xl:pt-2">
<BreadCrumbComponent
course={course}
contentType={contentType}
Expand Down

0 comments on commit cba0888

Please sign in to comment.