From: edbond88 Date: Tue, 30 Oct 2012 22:34:21 +0000 (+0200) Subject: box-sizing:border-box to all :before & :after elem X-Git-Tag: v3.2.1~8^2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=refs%2Fpull%2F1094%2Fhead;p=thirdparty%2Ffoundation%2Ffoundation-sites.git box-sizing:border-box to all :before & :after elem Add box-sizing:border-box to *:before and *:after --- diff --git a/scss/foundation/common/_globals.scss b/scss/foundation/common/_globals.scss index d3f8b99b2..3759c41b1 100644 --- a/scss/foundation/common/_globals.scss +++ b/scss/foundation/common/_globals.scss @@ -2,7 +2,7 @@ /* Global Reset & Standards ---------------------- */ - * { @include box-sizing(border-box); } + *, *:before, *:after { @include box-sizing(border-box); } html { font-size: 62.5%; } body { background: $white; font-family: $bodyFontFamily; font-weight: $bodyFontWeight; font-style: $bodyFontStyle; font-size: ms(0); line-height: 1; color: $bodyFontColor; position: relative; -webkit-font-smoothing: antialiased; }