index.scss 160 B

123456789
  1. @import "./mixin";
  2. @import "./variable";
  3. :root{
  4. --screenWidth: 1080;
  5. }
  6. $screenWidth:414;
  7. @function rpx($value){
  8. @return $screenWidth / 750 * $value + px;
  9. }