summaryrefslogtreecommitdiffstats
path: root/debian/missing-sources/bourbon-neat/app/assets/stylesheets/grid/_box-sizing.scss
blob: b6d3fec3341f3339e6a7446d52eee2fd3918ce40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
@charset "UTF-8";

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

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