summaryrefslogtreecommitdiffstats
path: root/debian/missing-sources/bourbon-neat/app/assets/stylesheets/settings/_disable-warnings.scss
blob: 3f9b92a6a0a6e05eeb4996c8962b6dd3e28f76dd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
@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}";
  }
}