vendor/assets/stylesheets/purecss/_grids.scss in purecss-sass-2.0.2 vs vendor/assets/stylesheets/purecss/_grids.scss in purecss-sass-2.0.3

- old
+ new

@@ -1,7 +1,7 @@ /*! -Pure v2.0.2 +Pure v2.0.3 Copyright 2013 Yahoo! Licensed under the BSD License. https://github.com/pure-css/pure/blob/master/LICENSE.md */ /*csslint regex-selectors:false, known-properties:false, duplicate-properties:false*/ @@ -31,13 +31,19 @@ * Helvetica, Arial, sans-serif: Common font stack on OS X and Windows. */ font-family: FreeSans, Arimo, "Droid Sans", Helvetica, Arial, sans-serif; /* Use flexbox when possible to avoid `letter-spacing` side-effects. */ + display: -webkit-box; + display: -ms-flexbox; display: flex; + -webkit-box-orient: horizontal; + -webkit-box-direction: normal; + -ms-flex-flow: row wrap; flex-flow: row wrap; /* Prevents distributing space between rows */ + -ms-flex-line-pack: start; align-content: flex-start; } /* IE10 display: -ms-flexbox (and display: flex in IE 11) does not work inside a table; fall back to block and rely on font hack */ @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {