Skip to content

Instantly share code, notes, and snippets.

@shaunbent
Created July 5, 2016 07:01
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 shaunbent/ca6dc58305ae3e434615acf1ef368fe8 to your computer and use it in GitHub Desktop.
Save shaunbent/ca6dc58305ae3e434615acf1ef368fe8 to your computer and use it in GitHub Desktop.
ORB Boxing Reset
/**
* 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