progress.css 310 B

12345678910111213141516171819202122232425
  1. uni-progress {
  2. display: flex;
  3. align-items: center;
  4. }
  5. uni-progress[hidden] {
  6. display: none;
  7. }
  8. .uni-progress-bar {
  9. flex: 1;
  10. }
  11. .uni-progress-inner-bar {
  12. width: 0;
  13. height: 100%;
  14. }
  15. .uni-progress-info {
  16. margin-top: 0;
  17. margin-bottom: 0;
  18. min-width: 2em;
  19. margin-left: 15px;
  20. font-size: 16px;
  21. }