Add wide
breakpoint of 1200px
This adds support for wide
to the following touchpoints:
{ mobile: 'small', wide: 'large' }
<Columns collapseBelow="wide" space={{ mobile: 'small', wide: 'large' }}>
responsiveStyle
function, e.g.export const className = style(responsiveStyle({ wide: '...' }));
breakpoints
object, which now exposes the number 1200
via breakpoints.wide
, i.e.{ mobile: 0, tablet: 740, desktop: 940, wide: 1200 }
Add breakpoints object for accessing standard breakpoint values
The breakpoints object provides a named set of screen sizes that form the basis of all responsive rules in Braid, available in the following format:
{ mobile: 0, tablet: 740, desktop: 992 }