Commit 79a40eb3 by Matthew Piatetsky Committed by GitHub

Merge pull request #14974 from edx/fix_progress_css_bug

Fix progress css bug
parents acf84503 932a23fb
......@@ -510,6 +510,30 @@
font-size: 0.9375em;
}
}
.expired-notification {
display: inline-block;
padding-top: 5px;
width: 300px;
@media(min-width: $bp-screen-sm) {
padding-top: 10px;
width: 500px;
}
@media(min-width: $bp-screen-md) {
width: initial;
}
}
.expired-icon {
@include float(left);
color: palette(primary, dark);
}
.expired-text {
overflow: hidden;
padding-left: 10px;
}
}
}
......@@ -614,30 +638,6 @@
border: 3px solid $gray-l3;
border-radius: 5px;
.expired-notification {
display: inline-block;
padding-top: 5px;
width: 300px;
@media(min-width: $bp-screen-sm) {
padding-top: 10px;
width: 500px;
}
@media(min-width: $bp-screen-md) {
width: initial;
}
}
.expired-icon {
@include float(left);
color: palette(primary, dark);
}
.expired-text {
overflow: hidden;
padding-left: 10px;
}
@media(min-width: $bp-screen-md) {
width: 100px;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment