| 1234567891011121314151617181920 |
- /*=========================================================================================
- File Name: progress.scss
- Description: Extended bootstrap progress bar scss.
- ----------------------------------------------------------------------------------------
- Item Name: Vuexy - Vuejs, React, Angular, HTML & Laravel Admin Dashboard Template
- Author: PIXINVENT
- Author URL: http://www.themeforest.net/user/pixinvent
- ----------------------------------------------------------------------------------------
- ==========================================================================================*/
- .progress {
- // border radius to set for stacked bars
- .progress-bar + .progress-bar:not(:last-child) {
- border-radius: 0;
- }
- .progress-bar:last-child {
- border-top-right-radius: $progress-border-radius;
- border-bottom-right-radius: $progress-border-radius;
- }
- }
|