- Updated .dockerignore to exclude backup directory with root-only permissions from build context. - Added new CSS variables for card radius and transition duration in app.css. - Implemented consistent focus ring styles for interactive elements to improve accessibility. - Refactored card components across various pages to utilize a unified card style, enhancing visual consistency. - Improved button styles with touch manipulation support for better user interaction on mobile devices.
28 lines
459 B
Plaintext
28 lines
459 B
Plaintext
# Git and IDE
|
|
.git
|
|
.gitignore
|
|
.cursor
|
|
.cursorignore
|
|
*.md
|
|
*.plan.md
|
|
|
|
# Old Vue 2 frontend (not used in build)
|
|
frontend/node_modules
|
|
frontend/dist
|
|
|
|
# Nuxt (built in frontendbuilder stage)
|
|
frontend-nuxt/node_modules
|
|
frontend-nuxt/.nuxt
|
|
frontend-nuxt/.output
|
|
|
|
# Runtime data (mounted at run time, not needed for build)
|
|
grids
|
|
|
|
# Backup dir often has root-only permissions; exclude from build context
|
|
backup
|
|
|
|
# Misc
|
|
*.log
|
|
.env*
|
|
.DS_Store
|