Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(ui): calendar sidebar redesign #464

Open
wants to merge 43 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
705ee07
Merge pull request #1 from Longhorn-Developers/main
EthanL06 Oct 21, 2024
e0aff38
Merge branch 'Longhorn-Developers:main' into main
EthanL06 Oct 23, 2024
da127d1
feat: update calendar sidebar, footer, and header with Figma design
EthanL06 Dec 23, 2024
b83207c
chore: run lint
EthanL06 Dec 23, 2024
5754c1c
Merge pull request #4 from Longhorn-Developers/main
EthanL06 Dec 23, 2024
eae6253
Merge remote-tracking branch 'origin/main' into feature/sidebar-redesign
EthanL06 Dec 23, 2024
5e4c38a
feat: update header with Figma design
EthanL06 Dec 23, 2024
2f30ce2
chore: run lint
EthanL06 Dec 23, 2024
aca0594
chore: remove unused vars
EthanL06 Dec 23, 2024
c87643f
chore: fix types
EthanL06 Dec 23, 2024
c5aab8a
fix: adjust sidebar minimum width
EthanL06 Dec 26, 2024
c437aaf
fix: update LogoIcon layout to ensure text is always displayed
EthanL06 Dec 26, 2024
d34ab80
feat: add spacing constants
EthanL06 Dec 28, 2024
83479b9
fix: add sidebar styling with spacing system and sticky header
EthanL06 Dec 28, 2024
0753f0a
fix: update spacing constants to use rem units
EthanL06 Dec 28, 2024
96f86d2
refactor: replace padding with spacing system and colors with UTRP theme
EthanL06 Dec 28, 2024
ab3eb50
refactor: rename ImportantLinks to ResourceLinks
EthanL06 Dec 28, 2024
9f8e331
refactor: simplify CalendarHeader button component by using icon prop
EthanL06 Dec 28, 2024
a039ea9
feat: add sidebar open and close transition
EthanL06 Dec 28, 2024
4027ece
refactor: rename unused var
EthanL06 Dec 28, 2024
68990ec
Merge branch 'main' into feature/sidebar-redesign
EthanL06 Dec 28, 2024
859c2b2
fix: update social icon color
EthanL06 Dec 31, 2024
fcc3581
feat: improve layout and spacing in calendar components
EthanL06 Jan 3, 2025
59a4993
Merge branch 'feature/sidebar-redesign' of https://github.com/EthanL0…
EthanL06 Jan 3, 2025
46fa071
refactor: remove unused GearSix icon and options handler
EthanL06 Jan 3, 2025
9bd0ec8
feat: update calendar components with new icons and improved spacing
EthanL06 Jan 3, 2025
a4ad6f7
fix: correct class name
EthanL06 Jan 3, 2025
4ca3025
refactor: organize social links into array and update link styling
EthanL06 Jan 3, 2025
7ed1ea3
refactor: remove unused import
EthanL06 Jan 3, 2025
f1804ab
fix: adjust gap spacing in radio button
EthanL06 Jan 8, 2025
af8a0b8
fix: update divider component to use theme offwhite1
EthanL06 Jan 8, 2025
f89cd43
fix: increase size of outward arrow icon
EthanL06 Jan 8, 2025
3f6332d
feat: add getSpacingInPx function to convert rem to pixels
EthanL06 Jan 8, 2025
11f5d08
fix: update gap spacing in CalendarSchedules component to use spacing…
EthanL06 Jan 8, 2025
d5dbf38
fix: rollback footer social icons to original icons
EthanL06 Jan 8, 2025
12c396b
fix: update Calendar styles to use theme offwhite1 and adjust padding…
EthanL06 Jan 8, 2025
01cf99a
fix: update LargeLogo component to use gap-spacing-3
EthanL06 Jan 8, 2025
f24e72a
Merge branch 'main' into feature/sidebar-redesign
EthanL06 Jan 8, 2025
6894a58
fix: update button variants to 'minimal' and adjust styles for consis…
EthanL06 Jan 8, 2025
1b00026
fix: adjust padding in Calendar component for better layout consistency
EthanL06 Jan 8, 2025
1592d4f
Merge branch 'main' into feature/sidebar-redesign
EthanL06 Jan 8, 2025
75fd48d
fix: increase size of arrow icon
EthanL06 Jan 8, 2025
b2f1bbd
fix: add shrink-0 to radio buttons
EthanL06 Jan 8, 2025
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
Prev Previous commit
Next Next commit
chore: fix types
  • Loading branch information
EthanL06 committed Dec 23, 2024
commit c87643fadc78aa063542f2b29f57442ceecf33f3
2 changes: 1 addition & 1 deletion src/views/components/calendar/CalendarHeader.tsx
Original file line number Diff line number Diff line change
@@ -10,7 +10,7 @@ import React, { useEffect, useState } from 'react';
import MenuIcon from '~icons/material-symbols/menu';

interface CalendarHeaderProps {
sidebarOpen: boolean;
sidebarOpen?: boolean;
onSidebarToggle?: () => void;
}

Loading