{# canonical_base is the OWNING tenant's origin: all 16 Peasy domains serve the same
catalogue, so a page rendered by a non-owner points its canonical at the owner
instead of competing with it. Falls back to this site for static/self-owned pages. #}
Generate responsive breakpoint systems for CSS media queries. Includes Tailwind, Bootstrap, and Material Design presets with container query support.
How It Works
Choose a breakpoint preset (Tailwind, Bootstrap, Material) and output format. Generates CSS custom properties, media query templates, Tailwind @theme tokens, and optionally container query equivalents.
Frequently Asked Questions
Should I use min-width or max-width media queries?
Mobile-first (min-width) is the modern standard. Start with mobile styles, then add complexity at larger breakpoints. Tailwind and Bootstrap both use min-width.
What are container queries?
Container queries let elements respond to their container's size rather than the viewport. Useful for reusable components that work in different layout contexts.