Fixing some deprecation warning while using KNACSS in a Laravel project

DEPRECATION WARNING: As of Dart Sass 2.0.0, !global assignments won't be able to
declare new variables. Consider adding `$gutter: null` at the top level.

   ╷
24 │       $gutter: $grid-gutters !global;
   │       ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   ╵
    node_modules/knacss/sass/_library/grillade-grid.scss 24:7  @import
    node_modules/knacss/sass/knacss.scss 51:9                  @import
    stdin 6:9                                                  root stylesheet
This commit is contained in:
Pierre Arnissolle 2019-04-07 15:11:23 +02:00 committed by GitHub
parent 3b40b8af06
commit 467fd8e5f6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -82,6 +82,9 @@ $hyphens: false !default;
// Number of grid-columns
$cols: 12 !default;
// Gutter
$gutter: null;
// Grid gutters (for .has-gutter-* classes)
$grid-gutters: (
'': 1rem,