Breakpoints

Pipeline keeps Tailwind’s default viewport breakpoints and adds two of its own in src/theme/theme.css. Each one is a min-width variant, so 3xl:px-8 applies from 120rem up and max-3xl:px-8 applies below it.

VariantMin widthAt a 16px rootUse
sm40rem640pxTailwind default.
md48rem768pxTailwind default.
lg64rem1024pxTailwind default.
desktop64rem1024pxAlias for lg. The App layout switches from mobile panels to panes.
xl80rem1280pxTailwind default.
2xl96rem1536pxTailwind default.
3xl120rem1920pxPipeline. App body content widens from 41.5rem to 47.5rem.

3xl targets 1080p monitors and wider. At 120rem, the navigation and sidebar at their default widths leave the body room for the wider content cap and its gutters. See App layout for the content cap.

For styles that depend on a pane’s width rather than the viewport’s, use container query variants instead. The App layout names its panes app-nav, app-body and app-sidebar, so @2xl/app-body: targets the body pane.