You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

38 line
737 B

  1. @import '../../_global/styles/mixins';
  2. @import '../../_global/styles/vars';
  3. .progress {
  4. --color-fg: var(--theme-color-primary);
  5. --color-bg: var(--theme-color-primary-dimmed-02);
  6. --bg-opacity: 1;
  7. position: relative;
  8. width: 150px;
  9. height: 14px;
  10. border-radius: 7px;
  11. overflow: hidden;
  12. font-size: 0;
  13. line-height: 0;
  14. margin: 0 -1;
  15. @media(max-width: 767px) {
  16. width: 120px;
  17. height: 12px;
  18. }
  19. &::before {
  20. content: '';
  21. @include full-size;
  22. background-color: var(--color-bg);
  23. opacity: var(--bg-opacity);
  24. }
  25. .bar {
  26. position: absolute;
  27. display: block;
  28. height: 100%;
  29. border-top-right-radius: 7px;
  30. border-bottom-right-radius: 7px;
  31. background-color: var(--color-fg);
  32. }
  33. }