feat: bold course number in grade distribution chart, change text to ut-black (#406)

* feat: bold course number in grade distribution chart, change text to text-ut-black

* fix: use !important instead of manual style

Co-authored-by: Samuel Gunter <29130894+Samathingamajig@users.noreply.github.com>

* fix: use tailwind classname instead of manual font weight

Co-authored-by: Samuel Gunter <29130894+Samathingamajig@users.noreply.github.com>

---------

Co-authored-by: Samuel Gunter <29130894+Samathingamajig@users.noreply.github.com>
This commit is contained in:
suhas
2024-11-04 15:38:51 -06:00
committed by GitHub
parent 50e88fa015
commit 638ee88c96

View File

@@ -211,8 +211,11 @@ export default function GradeDistribution({ course }: GradeDistributionProps): J
{status === DataStatus.FOUND && (
<>
<div className='flex flex-wrap content-center items-center self-stretch justify-center gap-3'>
<Text variant='small'>
Grade Distribution for {course.department} {course.number}
<Text variant='small' className='text-ut-black'>
Grade Distribution for{' '}
<Text variant='small' className='font-extrabold!' as='strong'>
{course.department} {course.number}
</Text>
</Text>
<select
className='border border rounded border-solid px-3 py-2'