Created
July 5, 2016 07:01
-
-
Save shaunbent/ca6dc58305ae3e434615acf1ef368fe8 to your computer and use it in GitHub Desktop.
ORB Boxing Reset
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
/** | |
* If you have enable `box-sizing: border-box;` globally on your project you will need | |
* to reset this for ORB which still uses `box-sizing: content-box;` | |
*/ | |
#blq-global, | |
#orb-banner, | |
#orb-footer { | |
-webkit-box-sizing: content-box; | |
-moz-box-sizing: content-box; | |
box-sizing: content-box; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment