2
0

dragAndDrop.css 941 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. .file-drop-area {
  2. position: relative;
  3. display: flex;
  4. align-items: center;
  5. width: 100%;
  6. max-width: 100%;
  7. padding: 150px;
  8. border: 1px dashed var(--bs-gray-400);
  9. border-radius: 3px;
  10. transition: 0.2s;
  11. }
  12. .choose-file-button {
  13. flex-shrink: 0;
  14. background-color: var(--bs-gray-200);
  15. border: 1px solid var(--bs-gray-400);
  16. border-radius: 3px;
  17. padding: 8px 15px;
  18. margin-right: 10px;
  19. font-size: 12px;
  20. text-transform: uppercase;
  21. }
  22. .file-message {
  23. font-size: large;
  24. font-weight: 300;
  25. line-height: 1.4;
  26. white-space: nowrap;
  27. overflow: hidden;
  28. text-overflow: ellipsis;
  29. }
  30. .import-excel {
  31. position: absolute;
  32. left: 0;
  33. top: 0;
  34. height: 100%;
  35. width: 100%;
  36. cursor: pointer;
  37. opacity: 0;
  38. }