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:
parent
3b40b8af06
commit
467fd8e5f6
1 changed files with 3 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue