_bootstrap-progress.scss 303 B

12345678910111213141516171819202122
  1. /* Bootstrap Progress */
  2. .progress {
  3. @include border-radius(3px);
  4. height: 8px;
  5. .progress-bar {
  6. @include border-radius(3px);
  7. }
  8. &.progress-sm{
  9. height: 0.375rem;
  10. }
  11. &.progress-md {
  12. height: 8px;
  13. }
  14. &.progress-lg {
  15. height: 15px;
  16. }
  17. &.progress-xl {
  18. height: 18px;
  19. }
  20. }