暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

_functions.scss 277B

123456789101112131415
  1. // Set Text Color
  2. @function set-text-color($color) {
  3. @if (lightness($color) > 50) {
  4. @return #000;
  5. } @else {
  6. @return #fff;
  7. }
  8. }
  9. // Transform mixin
  10. @mixin transform($property) {
  11. --webkit-transform: $property;
  12. -ms-transform: $property;
  13. transform: $property;
  14. }