123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- .uploadSection {
- width: 156px;
- height: 106px;
- background: #f8faf9;
- border-radius: 4px;
- border: 1px solid rgba(45, 199, 170, 0.26);
- font-size: 14px;
- color: #2dc7aa;
- line-height: 20px;
- }
- .uploadFile {
- width: 100%;
- min-width: 300px;
- height: 40px;
- border: 1px solid rgba(142, 142, 142, 0.26);
- border-radius: 4px;
- display: flex;
- align-items: center;
- padding: 0 15px;
- color: var(--el-text-color-regular);
- :global {
- .el-icon {
- margin-right: 5px;
- }
- }
- }
- .fileUpload {
- :global {
- .el-upload--text {
- @apply w-full;
- }
- .el-loading-spinner {
- display: flex;
- align-items: center;
- height: 40px;
- justify-content: center;
- margin-top: -20px;
- svg {
- width: 20px;
- height: 20px;
- margin-right: 5px;
- }
- }
- }
- }
- .uploadClass {
- height: 106px;
- width: 100%;
- :global {
- .el-loading-spinner {
- margin-top: -43px;
- height: 106px;
- }
- }
- }
|