Skip to content

Instantly share code, notes, and snippets.

@vitto
Last active August 29, 2015 14:04
Show Gist options
  • Save vitto/630c7d0b56280a80634e to your computer and use it in GitHub Desktop.
Save vitto/630c7d0b56280a80634e to your computer and use it in GitHub Desktop.
Frontsize - Example for setViewportsPadding mixin
<div class="my-selector"></div>
.my-selector {
@hdFullPadding : 6em,
@hdReadyPadding : 5em,
@tabletLandscapePadding : 4em,
@tabletPortraitPadding : 3em,
@smartphoneLandscapePadding : 2em,
@smartphonePortraitPadding : 1em
.setViewportsPadding(
@hdFullPadding,
@hdReadyPadding,
@tabletLandscapePadding,
@tabletPortraitPadding,
@smartphoneLandscapePadding,
@smartphonePortraitPadding
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment