forked from Dkendal/battle_snake
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Dylan Kendal
committed
Feb 15, 2017
1 parent
f6f419c
commit a185eac
Showing
80 changed files
with
3,480 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
@charset "UTF-8"; | ||
|
||
/// Throws Sass warnings to announce library deprecations. You can disable them | ||
/// by setting the `$output-bourbon-deprecation-warnings` variable to `false`. | ||
/// | ||
/// @access private | ||
|
||
@mixin _bourbon-deprecate($feature, $message: null) { | ||
@if $output-bourbon-deprecation-warnings == true { | ||
@warn "[Bourbon] [Deprecation] `#{$feature}` is deprecated and will be " + | ||
"removed in 5.0.0. #{$message}"; | ||
@content; | ||
} | ||
} | ||
|
||
@mixin _bourbon-deprecate-for-prefixing($feature) { | ||
@include _bourbon-deprecate($feature, "We suggest using an automated " + | ||
"prefixing tool, like Autoprefixer."); | ||
} |
Oops, something went wrong.