Created
July 15, 2016 03:20
-
-
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"
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
&[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