Skip to content

Instantly share code, notes, and snippets.

@louy
Created April 30, 2015 16:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save louy/af04e8e98a8b98a050f0 to your computer and use it in GitHub Desktop.
Save louy/af04e8e98a8b98a050f0 to your computer and use it in GitHub Desktop.
/**
* Fix element positioning when using adminbar
*/
@mixin fixed-top( $space, $property: "top", $factor: 1 ) {
#{$property}: $space * $factor;
.admin-bar & {
#{$property}: ($space + 46px) * $factor;
@media (min-width: 783px) {
#{$property}: ($space + 32px) * $factor;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment