index.module.less 1.1 KB

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