Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/views/components/calendar/Calendar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,12 @@ export default function Calendar(): ReactNode {
<LargeLogo />
<Button
variant='minimal'
size='small'
color='theme-black'
onClick={() => {
setShowSidebar(!showSidebar);
}}
className='h-fit screenshot:hidden !p-0'
className='screenshot:hidden'
icon={Sidebar}
/>
</div>
Expand Down
8 changes: 1 addition & 7 deletions src/views/components/calendar/CalendarFooter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,13 +58,7 @@ export default function CalendarFooter(): JSX.Element {
))}
</div>
<div>
<Button
className='h-fit w-fit !p-0'
variant='minimal'
icon={GearSix}
color='ut-black'
onClick={handleOpenOptions}
/>
<Button variant='minimal' size='small' icon={GearSix} color='ut-black' onClick={handleOpenOptions} />
</div>
</footer>
);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,10 @@ export default function CalendarHeader({ sidebarOpen, onSidebarToggle }: Calenda
{!sidebarOpen && (
<Button
variant='minimal'
size='small'
color='theme-black'
onClick={onSidebarToggle}
className='h-fit w-fit screenshot:hidden !p-0'
className='screenshot:hidden'
icon={Sidebar}
/>
)}
Expand Down
7 changes: 4 additions & 3 deletions src/views/components/calendar/CalendarSchedules.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,16 @@ export function CalendarSchedules() {
};

return (
<div className='min-w-full w-0 flex flex-col items-center gap-y-spacing-3'>
<div className='m0 w-full flex justify-between'>
<div className='min-w-full w-0 flex flex-col items-center gap-y-spacing-2'>
<div className='m0 w-full flex justify-between items-center'>
<Text variant='h3' className='text-nowrap text-theme-black'>
MY SCHEDULES
</Text>
<Button
variant='minimal'
size='small'
color='theme-black'
className='h-fit w-fit !p-0 btn'
className='!p-0 btn'
onClick={handleAddSchedule}
icon={Plus}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/views/components/common/Link.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function Link(props: PropsWithChildren<Props>): JSX.Element {
tabIndex={isDisabled ? -1 : 0}
className={clsx(
{
'underline cursor-pointer': !isDisabled,
'underline cursor-pointer p-2': !isDisabled,
'cursor-not-allowed color-ut-gray': isDisabled,
},
className
Expand Down