fix: change schedule total courses text color to UTRP black (#369)

This commit is contained in:
Aditya Angajala
2024-10-22 22:11:48 -05:00
committed by GitHub
parent eb306787ae
commit b00bf6c180

View File

@@ -27,7 +27,7 @@ export default function ScheduleTotalHoursAndCourses({
</Text>
<Text variant='h3' as='div' className='flex flex-row items-center gap-2 text-theme-black'>
{totalHours} {totalHours === 1 ? 'Hour' : 'Hours'}
<Text variant='h4' as='span' className='hidden text-ut-black capitalize screenshot:inline sm:inline'>
<Text variant='h4' as='span' className='hidden capitalize screenshot:inline sm:inline'>
{totalCourses} {totalCourses === 1 ? 'Course' : 'Courses'}
</Text>
</Text>