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.
21 lines
871 B
21 lines
871 B
7 months ago
|
/*=========================================================================================
|
||
|
File Name: progress.scss
|
||
|
Description: Extended bootstrap progress bar scss.
|
||
|
----------------------------------------------------------------------------------------
|
||
|
Item Name: Vuexy - Vuejs, 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;
|
||
|
}
|
||
|
}
|