- 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
24 lines
431 B
SCSS
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;
|
|
}
|
|
}
|
|
}
|