# changelog v7.1.0 (31 octobre 2018)
- mise à jour et meilleure intégration de gulp / postCSS : - autoprefixer version postCSS (avec browserslist officielle), - unprefix : pour supprimer les vieux préfixes inutiles - flexbox-fixes : pour corriger les erreurs connues sur IE - gap-properties : polyfill de gap -> grid-gap - minification CSS avec CSSnano - application de `white-space: pre-rap` sur les textarea
This commit is contained in:
parent
ad24c2fd51
commit
9a5ed3c989
13 changed files with 3561 additions and 4226 deletions
|
@ -14,6 +14,7 @@ $small: 576px !default;
|
|||
$medium: 768px !default;
|
||||
$large: 992px !default;
|
||||
$extra-large: 1200px !default;
|
||||
$cols: 12 !default;
|
||||
|
||||
// gutter values for grid layouts. Unit can be: %, px, em, rem
|
||||
$grid-gutters: ( '': 1rem, '-l': 2rem, '-xl': 4rem );
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
// in KNACSS, you shall modify variables file instead
|
||||
$tiny: 480px !default;
|
||||
$medium: 768px !default;
|
||||
$cols: 12 !default;
|
||||
|
||||
// classic Grid
|
||||
[class*=" grid-"],
|
||||
|
|
|
@ -81,7 +81,7 @@ textarea {
|
|||
min-height: 5em;
|
||||
vertical-align: top;
|
||||
resize: vertical;
|
||||
white-space: normal;
|
||||
white-space: pre-wrap;
|
||||
}
|
||||
|
||||
/* 'x' appears on right of search input when text is entered. This removes it */
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* www.KNACSS.com v7.0.9 (october, 24 2018) @author: Alsacreations, Raphael Goetter
|
||||
* www.KNACSS.com v7.1.0 (october, 31 2018) @author: Alsacreations, Raphael Goetter
|
||||
* Licence WTFPL http://www.wtfpl.net/
|
||||
*/
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue