Skip to content

Commit

Permalink
install bourbon
Browse files Browse the repository at this point in the history
  • Loading branch information
Dylan Kendal committed Feb 15, 2017
1 parent f6f419c commit a185eac
Show file tree
Hide file tree
Showing 80 changed files with 3,480 additions and 0 deletions.
19 changes: 19 additions & 0 deletions bourbon/_bourbon-deprecate.scss
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.");
}
Loading

0 comments on commit a185eac

Please sign in to comment.