Skip to content

Instantly share code, notes, and snippets.

@ianwesterfield
Created May 11, 2016 15:40
Show Gist options
  • Save ianwesterfield/1fcf9ccb8b3d86b3d1dc34f909c186a4 to your computer and use it in GitHub Desktop.
Save ianwesterfield/1fcf9ccb8b3d86b3d1dc34f909c186a4 to your computer and use it in GitHub Desktop.
@mixin no-padding($side) {
@if $side=='all' {
.no-padding {
padding: 0 !important;
}
}
@else {
.no-padding-#{$side} {
padding-#{$side}: 0 !important;
}
}
}
@include no-padding("left");
@include no-padding("right");
@include no-padding("top");
@include no-padding("bottom");
@include no-padding("all");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment