style: fix injected popup top/bottom padding (#218)
This commit is contained in:
@@ -184,7 +184,7 @@ export default function GradeDistribution({ course }: GradeDistributionProps): J
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='pb-[25px] pt-[12px]'>
|
<div className='pt-3'>
|
||||||
{/* TODO (achadaga): again would be nice to have an updated spinner */}
|
{/* TODO (achadaga): again would be nice to have an updated spinner */}
|
||||||
{status === DataStatus.LOADING && <Spinner />}
|
{status === DataStatus.LOADING && <Spinner />}
|
||||||
{status === DataStatus.NOT_FOUND && (
|
{status === DataStatus.NOT_FOUND && (
|
||||||
@@ -208,7 +208,7 @@ export default function GradeDistribution({ course }: GradeDistributionProps): J
|
|||||||
Grade Distribution for {course.department} {course.number}
|
Grade Distribution for {course.department} {course.number}
|
||||||
</Text>
|
</Text>
|
||||||
<select
|
<select
|
||||||
className='border border rounded-[4px] border-solid px-[12px] py-[8px]'
|
className='border border rounded border-solid px-3 py-2'
|
||||||
onChange={handleSelectSemester}
|
onChange={handleSelectSemester}
|
||||||
>
|
>
|
||||||
{Object.keys(distributions)
|
{Object.keys(distributions)
|
||||||
|
|||||||
@@ -104,7 +104,7 @@ export default function HeadingAndActions({ course, activeSchedule, onClose }: H
|
|||||||
};
|
};
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className='w-full px-2 pb-3 pt-6 text-ut-black'>
|
<div className='w-full px-2 pb-3 pt-5 text-ut-black'>
|
||||||
<div className='flex flex-col'>
|
<div className='flex flex-col'>
|
||||||
<div className='flex items-center gap-1'>
|
<div className='flex items-center gap-1'>
|
||||||
<Text variant='h1' className='truncate text-theme-black'>
|
<Text variant='h1' className='truncate text-theme-black'>
|
||||||
|
|||||||
Reference in New Issue
Block a user