← Back to list

fix-css
by antialias
⭐ 0🍴 0📅 Jan 25, 2026
SKILL.md
name: fix-css description: Fixes corrupted Panda CSS styled-system when styles appear broken, CSS isn't applying, or the build fails with styled-system errors. Use when CSS looks wrong, styles are missing, or after prettier/formatters may have corrupted generated files. allowed-tools: Bash, Read, Glob
Fix Corrupted Panda CSS (styled-system)
This project uses Panda CSS which generates a styled-system/ directory. This directory can become corrupted when:
- Prettier or other formatters modify the generated files
- Git merge conflicts in styled-system/
- Interrupted
panda codegenruns - Node modules corruption
Symptoms
- Styles not applying correctly
- CSS appears broken or missing
- Build errors mentioning
styled-system - Type errors in
styled-system/imports - Visual regressions that appeared without code changes
Fix Procedure
Run these commands in order:
# 1. Delete the corrupted styled-system
rm -rf apps/web/styled-system
# 2. Regenerate it with Panda CSS
cd apps/web && pnpm panda codegen
# 3. Clear Next.js cache (if build errors persist)
rm -rf apps/web/.next
# 4. Rebuild to verify
cd /Users/antialias/projects/soroban-abacus-flashcards && pnpm build
Verification
After regeneration, verify:
apps/web/styled-system/directory exists with fresh filespnpm buildcompletes without styled-system errors- Dev server shows correct styling
Prevention
The repo has .prettierignore at the root that excludes **/styled-system/**. If corruption keeps happening:
- Verify
.prettierignorecontains**/styled-system/** - Check that IDE formatters respect
.prettierignore - Ensure git hooks don't format styled-system files
Quick One-Liner
For fast fix without explanation:
rm -rf apps/web/styled-system apps/web/.next && cd apps/web && pnpm panda codegen && cd ../.. && pnpm build
Score
Total Score
50/100
Based on repository quality metrics
✓SKILL.md
SKILL.mdファイルが含まれている
+20
○LICENSE
ライセンスが設定されている
0/10
○説明文
100文字以上の説明がある
0/10
○人気
GitHub Stars 100以上
0/15
○最近の活動
3ヶ月以内に更新がある
0/10
○フォーク
10回以上フォークされている
0/5
✓Issue管理
オープンIssueが50未満
+5
✓言語
プログラミング言語が設定されている
+5
○タグ
1つ以上のタグが設定されている
0/5
Reviews
💬
Reviews coming soon