Files
edx-platform/lms/static/sass/course/layout/_reset_deadlines.scss
Nicholas D'Alfonso 396050703e AA-97 mobile reset message
- remove code for displaying banner in mobile dates fragment
- replace button with link to web app in reset dates banner on
  the mobile problem template
- adjust spacing of reset dates button in banner when button wraps
  on smaller screen
2020-04-09 12:55:26 -04:00

24 lines
431 B
SCSS

div.reset-deadlines-banner {
background-color: theme-color("primary");
display: none;
flex-wrap: wrap;
padding: 15px 20px;
margin-top: 5px;
div,
button {
flex: 0 1 auto;
&.reset-deadlines-text {
color: theme-color("inverse");
margin: 10px 10px 10px 0;
}
&.reset-deadlines-button {
color: #0075b4;
background-color: theme-color("inverse");
cursor: pointer;
}
}
}