- Move app-root, app-main, app-header base layout to application.css - Move selected-theme classes to CreationActions.css where they're used - Update AppHeader to use utility classes from application.css - Clean up App.css to only contain essential imports - Add responsive design utilities to application.css - Reduce CSS duplication across components 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
7 lines
213 B
CSS
7 lines
213 B
CSS
/* Import aspect ratio system for theme engine */
|
|
@import './styles/aspectRatios.css';
|
|
|
|
/* Import application-wide styles */
|
|
@import './styles/application.css';
|
|
|
|
/* App.tsx specific styles can go here if needed */ |