_drop-zone.scss 357 B

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