By @dpschen fix: move one-off exception to place where it is used
continuous-integration/drone/pr Build is failing Details

This commit is contained in:
Adrian Simmons 2021-11-16 22:00:32 +00:00
parent d923a73827
commit ab89b3c1a6
2 changed files with 7 additions and 5 deletions

View File

@ -57,12 +57,9 @@
--primary-h: 216.5deg;
--primary-s: 100%;
--primary-l: 54.9%;
// simulate sass lighten($primary, 30) by increasing lightness 30% to 73%
--primary-light-l: 73%;
--primary-a: 1;
--primary-hsl: var(--primary-h), var(--primary-s), var(--primary-l);
--primary: hsla(var(--primary-h), var(--primary-s), var(--primary-l), var(--primary-a));
--primary-light: hsla(var(--primary-h), var(--primary-s), var(--primary-light-l), var(--primary-a));
// Define custom color variable to prevent change in dark mode

View File

@ -892,12 +892,12 @@ $flash-background-duration: 750ms;
.checklist-summary {
margin-left: .25rem;
}
}
}
.task-view-container {
padding-bottom: 1rem;
@media screen and (max-width: $desktop) {
padding-bottom: 0;
}
@ -920,6 +920,11 @@ $flash-background-duration: 750ms;
}
}
.task-view-container {
// simulate sass lighten($primary, 30) by increasing lightness 30% to 73%
--primary-light: hsla(var(--primary-h), var(--primary-s), 73%, var(--primary-a));
}
.flash-background-enter-from,
.flash-background-enter-active {
animation: flash-background $flash-background-duration ease 1;