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.
24 lines
364 B
24 lines
364 B
6 years ago
|
//
|
||
|
// Progress bars
|
||
|
// --------------------------------------------------
|
||
|
.progress {
|
||
|
border-radius: 1px;
|
||
|
}
|
||
|
.progress-bar {
|
||
|
@include transition(width 1.2s ease);
|
||
|
}
|
||
|
|
||
|
.progress-sm {
|
||
|
height: 2px;
|
||
|
|
||
|
.progress-bar {
|
||
|
padding: 0;
|
||
|
}
|
||
|
}
|
||
|
.progress-lg {
|
||
|
height: 2.8rem;
|
||
|
}
|
||
|
|
||
|
.progress-bar[data-toggle="progress-bar-animated-progress"] {
|
||
|
width: 0 !important;
|
||
|
}
|