style.scss 277 B

1234567891011121314
  1. @import '@uppy/core/src/_variables.scss';
  2. .uppy-is-drag-over:after {
  3. content: '';
  4. position: fixed;
  5. top: 7px;
  6. right: 7px;
  7. bottom: 7px;
  8. left: 7px;
  9. border: 5px dashed $gray-400;
  10. // border-radius: 5px;
  11. z-index: 10000;
  12. background-color: rgba($gray-200, 0.5);
  13. }