Uses a map to store breakpoint values for screen, component and anything else you can think of.
Has a layout indicator to show you the type of breakpoint (screen
, component
, etc.), the name (s
, m
, l
, etc.) and the pixel value of the break.
This demo uses Bourbon Neat for generating media queries, but of course, use whatever you want.
Usage:
.foo {
content: 'Mobile-first Styles';
@include media(break(screen, l)) {
content: 'Large Screen Styles';
}
}