Skip to content

Instantly share code, notes, and snippets.

@jonnymaceachern
Created April 19, 2017 14:48
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 jonnymaceachern/3ab8554f759d89f91f07da2e1a5b90df to your computer and use it in GitHub Desktop.
Save jonnymaceachern/3ab8554f759d89f91f07da2e1a5b90df to your computer and use it in GitHub Desktop.
/**
* Trim beginning and end of group
*/
@mixin trim-padding {
&:first-of-type {
padding-left: 0;
}
&:last-of-type {
padding-right: 0;
}
}
@mixin trim-margin {
&:first-of-type {
margin-left: 0;
}
&:last-of-type {
margin-right: 0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment