// Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
// See LICENSE in the project root for license information.

// ---------------------------------------------------------------------

// sass-lint:disable no-important

/// The use of the `$important` variable allows the user to determine if they require the use of the `!important` flag with utility classes or not.
/// By default the `!important` flag is NOT set on any CSS selector.
/// @group Utility
/// @prop {Boolean} $important [null] - manage use of `!important` flag
/// @example scss - update value prior to importing utility support file if `!important` flag is needed
///   $important: true;
///   @import "./node_modules/@aurodesignsystem/webcorestylesheets/dist/utilityClasses/ ... ";

$important: null !default;

@if $important {
  $important: !important;
}
