presidential-innovation-fellows/hack-the-paygap

View on GitHub
scss/web-design-standards/_scss/lib/neat/grid/_box-sizing.scss

Summary

Maintainability
Test Coverage
@charset "UTF-8";

@if $border-box-sizing == true {
  html { // http://bit.ly/1qk2tVR
    box-sizing: border-box;
  }

  * {
    &,
    &::after,
    &::before {
      box-sizing: inherit;
    }
  }
}