Skip to content

Instantly share code, notes, and snippets.

@alexcarpenter
Created March 24, 2016 02:21
Show Gist options
  • Save alexcarpenter/32e9f4c1328e63bbe3dd to your computer and use it in GitHub Desktop.
Save alexcarpenter/32e9f4c1328e63bbe3dd to your computer and use it in GitHub Desktop.
Sass depreciation warning
// warning message is optional
@mixin deprecated($item, $msg: null) {
@if $msg { @warn "DEPRECATION WARNING: #{$item} -- #{$msg}"}
@else { @warn "DEPRECATION WARNING: #{$item}" }
}
.button--login {
@include deprecated(&, 'use "btn" prefix');
color: blue;
}
.button--ex2 {
@include deprecated(&);
}
.btn--login {
color: lightblue;
}
from: http://codepen.io/una/pen/EKZKgm?editors=0101
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment