Styling
CSS Structure
public/assets/theme/my-theme/css/
├── main.css # Main stylesheet (loaded everywhere)
├── admin.css # Admin panel specific
├── dashboard.css # Dashboard specific
├── auth.css # Login/register pages
├── components/
│ ├── buttons.css
│ ├── cards.css
│ ├── forms.css
│ └── tables.css
└── utilities.css # Helper classesIncluding Stylesheets
{% block head_stylesheets %}
{{ parent() }} {# Include default styles #}
{# Your theme styles #}
<link rel="stylesheet" href="{{ asset('assets/theme/my-theme/css/main.css') }}">
<link rel="stylesheet" href="{{ asset('assets/theme/my-theme/css/components/buttons.css') }}">
{% endblock %}Bootstrap Customization
Dark Mode
Custom Components
Responsive Design
Bootstrap Breakpoints
Breakpoint
Class prefix
Dimensions
Common CSS Patterns
CSS Best Practices
Performance Tips
Debugging CSS
Related Guides
External Resources
Last updated