index.module.less 973 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. .uploadSection {
  2. width: 156px;
  3. height: 106px;
  4. background: #f8faf9;
  5. border-radius: 4px;
  6. border: 1px solid rgba(45, 199, 170, 0.26);
  7. font-size: 14px;
  8. color: #2dc7aa;
  9. line-height: 20px;
  10. }
  11. .uploadFile {
  12. width: 100%;
  13. min-width: 300px;
  14. height: 40px;
  15. border: 1px solid rgba(142, 142, 142, 0.26);
  16. border-radius: 4px;
  17. display: flex;
  18. align-items: center;
  19. padding: 0 15px;
  20. color: var(--el-text-color-regular);
  21. :global {
  22. .el-icon {
  23. margin-right: 5px;
  24. }
  25. }
  26. }
  27. .fileUpload {
  28. :global {
  29. .el-upload--text {
  30. @apply w-full;
  31. }
  32. .el-loading-spinner {
  33. display: flex;
  34. align-items: center;
  35. height: 40px;
  36. justify-content: center;
  37. margin-top: -20px;
  38. svg {
  39. width: 20px;
  40. height: 20px;
  41. margin-right: 5px;
  42. }
  43. }
  44. }
  45. }
  46. .uploadClass {
  47. height: 106px;
  48. width: 100%;
  49. :global {
  50. .el-loading-spinner {
  51. margin-top: -43px;
  52. height: 106px;
  53. }
  54. }
  55. }