/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

  1. // @todo Remove in .4
  2. @mixin ui-border-bevel($width, $color, $variation: 15%)
  3. {
  4. @warn 'ui-border-bevel has been deprecated. Please use effects/bevel mixins instead';
  5. border: $width solid $color;
  6. border-top-color: lighten($color, $variation);
  7. border-bottom-color: darken($color, $variation);
  8. }