Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
7721608
feat: Implement Tailwind CSS for styling and add a GitHub Actions dep…
Sipioteo Feb 23, 2026
9801c8a
feat: Migrate Tailwind CSS integration to use the new Vite plugin and…
Sipioteo Feb 23, 2026
66c62c4
feat: Implement dynamic theming for EventHomepage based on event or o…
Sipioteo Feb 23, 2026
b3da096
feat: dynamically adjust UI element colors based on background and ac…
Sipioteo Feb 23, 2026
72cd051
fix: Override global anchor styles with link-specific text utility cl…
Sipioteo Feb 23, 2026
8a0cf7f
refactor: simplify card background styling to use consistent glass-mo…
Sipioteo Feb 23, 2026
4352ddd
feat: Enhance `StatusToggle` and `NumberSelector` with new styling pr…
Sipioteo Feb 23, 2026
127434d
feat: Embed Google Maps for event location and remove fixed aspect ra…
Sipioteo Feb 23, 2026
3f5c025
feat: Introduce a custom donation amount modal for tiered products, r…
Sipioteo Feb 23, 2026
07fb256
chore: remove documentation and frontend DOM checking script.
Sipioteo Feb 24, 2026
19d8737
feat: Update dependencies and integrate Tailwind Typography plugin fo…
Sipioteo Feb 24, 2026
6c9b253
feat: Introduce new homepage background types including gradient and …
Sipioteo Feb 24, 2026
0c39a75
refactor: Standardize homepage background type values to consistent u…
Sipioteo Feb 24, 2026
e72f74b
refactor: Update EventHomepage background image and overlay styling f…
Sipioteo Feb 24, 2026
e8e0d2b
refactor: enhance background dark mode detection to consider backgrou…
Sipioteo Feb 24, 2026
f331371
feat: introduce TextSpoiler component and replace existing Spoiler us…
Sipioteo Feb 24, 2026
a25cfe1
refactor: refine layout and styling for tiered product and donation p…
Sipioteo Feb 24, 2026
dae66de
style: remove vertical gap from product item layout.
Sipioteo Feb 24, 2026
dbff936
feat: update translations across multiple locales and modify the prod…
Sipioteo Feb 24, 2026
611d14b
Delete yarn.lock
Sipioteo Feb 25, 2026
5cc3325
Add IconMaximize and improve mobile button visibility
Sipioteo Feb 25, 2026
1a1b8f0
Delete .github/workflows/deploy-test.yml
Sipioteo Feb 25, 2026
f4f87c2
Refactor TextSpoiler state management and layout
Sipioteo Feb 26, 2026
746b183
Remove scroll button logic and optimize meshColors
Sipioteo Feb 26, 2026
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: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,6 @@ prompts/

/plans/**
/plans

/.axon/**
/.axon
1 change: 1 addition & 0 deletions backend/app/DomainObjects/Enums/HomepageBackgroundType.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,5 @@ enum HomepageBackgroundType: string

case MIRROR_COVER_IMAGE = 'MIRROR_COVER_IMAGE';
case COLOR = 'COLOR';
case GRADIENT = 'GRADIENT';
}
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public function messages(): array
'homepage_theme_settings.accent' => $colorMessage,
'homepage_theme_settings.background' => $colorMessage,
'homepage_theme_settings.mode.in' => __('The mode must be light or dark.'),
'homepage_theme_settings.background_type.in' => __('The background type must be COLOR or MIRROR_COVER_IMAGE.'),
'homepage_theme_settings.background_type.in' => __('The background type must be COLOR, GRADIENT, or MIRROR_COVER_IMAGE.'),
];
}
}
Loading
Loading