Skip to content
Merged
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
9 changes: 9 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,15 @@ jobs:
- name: Build Tailwind CSS
run: npm run build-css-prod

- name: Verify CSS output
run: |
if [ ! -f "static/css/output.css" ]; then
echo "Error: output.css not found!"
exit 1
fi
echo "CSS file size: $(wc -c < static/css/output.css) bytes"
echo "CSS file exists and ready for deployment"

- name: Create required directories
run: |
mkdir -p content/blog content/event
Expand Down
2 changes: 1 addition & 1 deletion static/css/output.css

Large diffs are not rendered by default.

18 changes: 18 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,24 @@ module.exports = {
safelist: [
'translate-x-0',
'overflow-hidden',
// Mobile navbar classes
'md:hidden',
'md:pb-0',
'pb-20',
'fixed',
'bottom-0',
'left-0',
'right-0',
'top-0',
'z-50',
'grid-cols-2',
'gap-3',
'md:gap-4',
'md:columns-3',
'lg:columns-4',
'md:space-y-4',
'bg-background/60',
'backdrop-blur-md',
// Schedule Page Dynamic Classes
'md:flex-row',
'md:w-1/2',
Expand Down