function.scss 256 B

12345678910111213141516
  1. /**
  2. * 混入定义
  3. * 加上
  4. * @since 1.0.0
  5. * @version 1.0.0
  6. */
  7. // 增减数值
  8. @function increase($target, $num) {
  9. @return $target + $num;
  10. }
  11. // 为样式模块加上命名空间
  12. @function namespace($str) {
  13. @return $global-ui-namespace + $str;
  14. }