uploadFile.scss 979 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. .hc-uni-app-form-upload {
  2. .uni-section {
  3. margin-top: 2rpx;
  4. }
  5. .hc-file-item {
  6. position: relative;
  7. display: flex;
  8. align-items: center;
  9. padding: 20rpx;
  10. background: white;
  11. .name {
  12. flex: 1;
  13. }
  14. .action {
  15. position: relative;
  16. display: flex;
  17. align-items: center;
  18. }
  19. }
  20. .hc-file-item + .hc-file-item {
  21. border-top: 1px solid #f3f3f3;
  22. }
  23. .action-bar-block {
  24. height: calc(var(--window-bottom) + 160rpx);
  25. }
  26. .action-bar {
  27. position: absolute;
  28. bottom: 0;
  29. width: 100%;
  30. display: flex;
  31. background: white;
  32. padding: 28rpx 28rpx calc(var(--window-bottom) + 34rpx);
  33. .action-bar-btn {
  34. flex: 1;
  35. margin-right: 15rpx;
  36. }
  37. .action-bar-btn + .action-bar-btn {
  38. margin-right: 0;
  39. margin-left: 15rpx;
  40. }
  41. }
  42. }