Skip to content

Instantly share code, notes, and snippets.

@taniarascia
Created January 8, 2016 01:12
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 taniarascia/20a9411085178b93745d to your computer and use it in GitHub Desktop.
Save taniarascia/20a9411085178b93745d to your computer and use it in GitHub Desktop.
Add margins in between columns
/* Adding margins instead of padding based
.no-collapse {
> [class*="column"] ~ [class*="column"] {
margin-left: .5rem;
}
}
[class*="column"] ~ [class*="column"] {
margin-left: 0;
}
@include large-screen {
[class*="column"] ~ [class*="column"] {
margin-left: .5rem;
}
}*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment