Skip to content

Instantly share code, notes, and snippets.

@babsgosgens
Last active December 20, 2015 17:59
Show Gist options
  • Save babsgosgens/6172513 to your computer and use it in GitHub Desktop.
Save babsgosgens/6172513 to your computer and use it in GitHub Desktop.
@mixin root($hide-overflow: true, $root-max-width: $root-max-width, $set-display: false)
{
@if $set-display {
display: block;
}
@if $hide-overflow {
overflow: hidden;
}
@if $root-position==center {
margin: 0 auto;
}
max-width: $root-max-width;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment