Skip to content

Commit

Permalink
remove comments, align-items, and unnecessary height
Browse files Browse the repository at this point in the history
  • Loading branch information
Dave Poole authored and mdo committed Aug 11, 2017
1 parent 1ab4f57 commit 36a21f3
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions scss/_progress.scss
Original file line number Diff line number Diff line change
@@ -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;
Expand All @@ -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;
}

0 comments on commit 36a21f3

Please sign in to comment.