fix: remove bottom padding for TaskDetailView as modal

This commit is contained in:
Dominik Pschenitschni 2022-11-22 12:54:20 +01:00
parent 5f4e93b7f4
commit 6115a67cfa
Signed by: dpschen
GPG Key ID: B257AC0149F43A77
1 changed files with 5 additions and 3 deletions

View File

@ -809,9 +809,11 @@ async function setPercentDone(percentDone: number) {
--primary-light: hsla(var(--primary-h), var(--primary-s), 73%, var(--primary-a));
padding-bottom: 0;
@media screen and (min-width: $desktop) {
padding-bottom: 1rem;
}
&:not(.is-modal) {
@media screen and (min-width: $desktop) {
padding-bottom: 1rem;
}
}
}
.task-view {