Responsive theming helper
/**
* responsive theming helper
*/
/* body {
&:before {
position: fixed; top: 60px; right: 0; z-index: 1; width: 100px; height: 30px; padding: 5px 10px; font-weight: bold; font-size: 16px; line-height: 30px; content:"default"; background-color:blue; color: white; text-align: right;
@include at-breakpoint($break-1){content:"break-1";background-color:green;color:black;}
@include at-breakpoint($break-2){content:"break-2";background-color:red;}
@include at-breakpoint($break-3){content:"break-3";background-color:cyan;}
}
#admin-menu {
display: none;
@include at-breakpoint($break-3){display: block;}
}
} */