0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00

remove comments, align-items, and unnecessary height

This commit is contained in:
Dave Poole 2017-05-26 12:47:09 -07:00 committed by Mark Otto
parent 1ab4f57af4
commit 36a21f355c

View File

@ -1,13 +1,10 @@
// Progress animations
@keyframes progress-bar-stripes {
from { background-position: $progress-height 0; }
to { background-position: 0 0; }
}
// Basic progress bar
.progress {
display: flex;
align-items: center;
height: $progress-height;
overflow: hidden; // force rounded corners by cropping it
font-size: $progress-font-size;
@ -20,18 +17,15 @@
display: flex;
align-items: center;
justify-content: center;
height: 100%;
color: $progress-bar-color;
background-color: $progress-bar-bg;
}
// Striped
.progress-bar-striped {
@include gradient-striped();
background-size: $progress-height $progress-height;
}
// Animated
.progress-bar-animated {
animation: progress-bar-stripes $progress-bar-animation-timing;
}