index.scss 206 B

12345678910111213
  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. }
  10. .v-dialog{
  11. background-color: #00000000;
  12. }