Skip to content

Commit

Permalink
Reduce left margin
Browse files Browse the repository at this point in the history
  • Loading branch information
39bytes committed Jul 3, 2023
1 parent cda5ebf commit 77240d5
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions client/src/components/SchedulesDisplay.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,10 @@ export const SchedulesDisplay = ({ course }: { course: Course }) => {
<div key={blockIndex} className='flex flex-col'>
<div
className={twMerge(
'flex flex-row justify-between border-t border-neutral-200 p-2 px-3 pl-10 dark:border-neutral-600'
'flex flex-row justify-between border-t border-neutral-200 p-2 px-3 pl-5 dark:border-neutral-600'
)}
>
<div className='flex flex-col flex-wrap gap-x-2 whitespace-pre-wrap text-left lg:flex-row'>
<div className='flex flex-col flex-wrap gap-x-2 whitespace-pre-wrap text-left md:flex-row'>
<div className='w-20'>
<span className='font-semibold'>{block.display}</span>
</div>
Expand All @@ -113,7 +113,6 @@ export const SchedulesDisplay = ({ course }: { course: Course }) => {
</div>
<div className='w-80'>
<span className='font-semibold'>Classroom(s): </span>

{block.location ? block.location.replace(';', ',') : 'N/A'}
</div>
</div>
Expand Down

0 comments on commit 77240d5

Please sign in to comment.