Sha256: 74f2678f2c629090c13f3bb8f9e2caaf293e50a6f203f41d3c591fb3e175c50d
Contents?: true
Size: 612 Bytes
Versions: 7
Compression:
Stored size: 612 Bytes
Contents
@charset "UTF-8"; /// Throws Sass warnings to announce backend deprecations. You can disable them /// by setting the `$output-alchemy-deprecation-warnings` variable to `false`. /// /// @access private $output-alchemy-deprecation-warnings: true !default; @mixin alchemy-deprecated-variable($variable, $replacement) { @if $output-alchemy-deprecation-warnings == true { @if global-variable-exists($variable) { @warn "[Alchemy] [Deprecation] Sass variable `#{$variable}` is deprecated and will be " + "removed in Alchemy 8.0. Please use custom property `#{$replacement}` instead"; } } }
Version data entries
7 entries across 7 versions & 1 rubygems