Skip to content

Commit

Permalink
feat: alignment on calendar and header (#109)
Browse files Browse the repository at this point in the history
* feat: corrected date updated text

* feat: whew alignment looks way better

* feat: aligned the bars and made the latter half justify-end

* fix: limt

* fix: removed broken divider vinson did u do this
  • Loading branch information
DereC4 authored and doprz committed Mar 6, 2024
1 parent ee37897 commit 07ec5ab
Showing 1 changed file with 10 additions and 13 deletions.
23 changes: 10 additions & 13 deletions src/views/components/calendar/CalendarHeader/CalenderHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ import ScheduleTotalHoursAndCourses from '@views/components/common/ScheduleTotal
import Text from '@views/components/common/Text/Text';
import React from 'react';
import calIcon from 'src/assets/logo.png';

import MenuIcon from '~icons/material-symbols/menu';
import RedoIcon from '~icons/material-symbols/redo';
import SettingsIcon from '~icons/material-symbols/settings';
Expand All @@ -21,25 +20,24 @@ const CalendarHeader = () => (
<div className='flex flex-row gap-20'>
<div className='flex gap-10'>
<div className='flex gap-1'>
<Button variant='single' icon={MenuIcon} color='ut-gray' />
<div className='flex items-center'>
<Button className='self-center' variant='single' icon={MenuIcon} color='ut-gray' />
<div className='flex items-center gap-2'>
<img src={calIcon} className='max-w-[48px] min-w-[48px]' alt='UT Registration Plus Logo' />
<div className='flex flex-col whitespace-nowrap'>
<Text className='leading-trim font-roboto text-cap text-base text-ut-burntorange font-medium'>
UT Registration
</Text>
<Text className='leading-trim text-cap font-roboto text-base text-ut-orange font-medium'>
Plus
</Text>
<Text className='text-lg text-ut-burntorange font-medium'>UT Registration</Text>
<Text className='text-lg text-ut-orange font-medium'>Plus</Text>
</div>
</div>
</div>
<div className='flex flex-col'>
<Divider className='self-center' size='2.5rem' orientation='vertical' />
<div className='flex flex-col self-center'>
<ScheduleTotalHoursAndCourses scheduleName='SCHEDULE' totalHours={22} totalCourses={8} />
DATA UPDATED ON: 12:00 AM 02/01/2024
<Text variant='h4' className='text-gray text-xs font-medium leading-normal'>
DATA UPDATED ON: 12:00 AM 02/01/2024
</Text>
</div>
</div>
<div className='flex flex-row items-center space-x-8'>
<div className='flex flex-row justify-end items-center space-x-8'>
<div className='flex flex-row space-x-4'>
<CourseStatus size='small' status={Status.WAITLISTED} />
<CourseStatus size='small' status={Status.CLOSED} />
Expand All @@ -52,7 +50,6 @@ const CalendarHeader = () => (
</div>
</div>
</div>
<Divider type='solid' />
</div>
);

Expand Down

0 comments on commit 07ec5ab

Please sign in to comment.