/sass/recipes/ui/border/_bevel.scss
https://bitbucket.org/decore/my-svadba.ru · Sass · 9 lines · 7 code · 1 blank · 1 comment · 0 complexity · fa2596895eb7f9090263a6c4d8836bb9 MD5 · raw file
- // @todo Remove in .4
- @mixin ui-border-bevel($width, $color, $variation: 15%)
- {
- @warn 'ui-border-bevel has been deprecated. Please use effects/bevel mixins instead';
- border: $width solid $color;
- border-top-color: lighten($color, $variation);
- border-bottom-color: darken($color, $variation);
- }