Skip to content

Instantly share code, notes, and snippets.

View sidedwards's full-sized avatar
🇺🇸
Idaho, USA

Sid Edwards sidedwards

🇺🇸
Idaho, USA
View GitHub Profile
@sidedwards
sidedwards / gist:a818bb31cae3acaeccd92ef9f5f8dfd8
Created November 22, 2016 19:03
Scopeless Media query sass placeholder
$breakpoints: (sm:576px, md:768px, lg:992px, xl:1200px);
%button-reset {
$media: sm;
appearance: none;
border: none;
outline: none;
@each $screen-size, $breakpoint-value in $breakpoints {
@if ( index($media,$screen-size) ) {
@media (min-width: $breakpoint-value) {