Skip to content

Instantly share code, notes, and snippets.

@matthisamoto
Created July 15, 2016 03:20
Show Gist options
  • Save matthisamoto/b7a4ab8cbd4bf34f3a0c96319d7f8fc9 to your computer and use it in GitHub Desktop.
Save matthisamoto/b7a4ab8cbd4bf34f3a0c96319d7f8fc9 to your computer and use it in GitHub Desktop.
Identify Bootstrap classes in CSS to apply to all pulled elements e.g. "pull-xs-left", "pull-md-right"
&[class*="pull"] {
&[class*="left"] {
margin-right: 20px;
}
&[class*="right"] {
margin-left: 20px;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment