@use 'sass:map';
@use 'sass:color';

@use 'common/var.scss'as *;
@use 'mixins/mixins'as *;

// #{getClassName((drag))} {
// }
#{getClassName((drag, body))} {
  cursor: move;
  user-select: none;
  #{getClassName((drag))} {
    * {
      pointer-events: none;
    }
  }
  #{getClassName((drag, ref))} {
    transition: all 0s;
    visibility: hidden;
    cursor: pointer;
  }
}

#{getClassName((drag, ing))} {
  position: fixed;
  left: 0;top:0;
  pointer-events:none;
  z-index:999;
  transition: all 0s;
  opacity: .6;
}