Skip to content

Instantly share code, notes, and snippets.

@cjwd-snippets
Created April 22, 2016 19:46
Show Gist options
  • Select an option

  • Save cjwd-snippets/884d08c48a7adb296b52165c8a1ab8ff to your computer and use it in GitHub Desktop.

Select an option

Save cjwd-snippets/884d08c48a7adb296b52165c8a1ab8ff to your computer and use it in GitHub Desktop.
Show-Hide
/*------------------------------------*\
#SHOW-HIDE
\*------------------------------------*/
.hide, .screen-reader-text { @include hide(); }
@include media-query(palm) {
.hide-palm { @include hide(); }
}
@include media-query(lap) {
.hide-lap { @include hide(); }
}
@include media-query(lap-and-up) {
.hide-lap-and-up { @include hide(); }
}
@include media-query(portable) {
.hide-portable { @include hide(); }
}
@include media-query(desk) {
.hide-desk { @include hide(); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment