Make sure the task popup view takes up all the space it can on mobile

This commit is contained in:
kolaente 2021-08-06 23:52:55 +02:00
parent f4a4909ead
commit d21795ffd7
Signed by untrusted user: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 9 additions and 1 deletions

View File

@ -22,7 +22,7 @@
width: 100%;
margin: 4rem auto;
@media screen and (max-width: 1024px) {
@media screen and (max-width: $desktop) {
margin: 0;
.close {

View File

@ -4,6 +4,10 @@
padding: 1rem;
background-color: $light-background;
@media screen and (max-width: $desktop) {
padding-bottom: 0;
}
.subtitle {
color: $grey-500;
@ -197,6 +201,10 @@
.task-view-container {
padding-bottom: 1rem;
@media screen and (max-width: $desktop) {
padding-bottom: 0;
}
.task-view * {
opacity: 0;