_drop-zone.scss 386 B

12345678910111213141516171819
  1. @use '../../settings' as *;
  2. // file drop zones
  3. .drop-zone {
  4. border-radius: 5px;
  5. border: 2px dashed theme('colors.border-furniture');
  6. padding: $mobile-nice-padding;
  7. background-color: theme('colors.surface-header');
  8. margin-bottom: 1em;
  9. text-align: center;
  10. .drop-zone-help {
  11. border: 0;
  12. }
  13. &.hovered {
  14. border-color: theme('colors.surface-button-default');
  15. }
  16. }