mirror of
https://github.com/scratchfoundation/scratchx.git
synced 2024-11-25 09:08:28 -05:00
14 lines
257 B
SCSS
14 lines
257 B
SCSS
|
@charset "UTF-8";
|
||
|
|
||
|
/// Disable all deprecation warnings. Defaults to `false`. Set with a `!global` flag.
|
||
|
///
|
||
|
/// @type Bool
|
||
|
|
||
|
$disable-warnings: false !default;
|
||
|
|
||
|
@mixin -neat-warn($message) {
|
||
|
@if $disable-warnings == false {
|
||
|
@warn "#{$message}";
|
||
|
}
|
||
|
}
|