Make sure the task popup view takes up all the space it can on mobile
This commit is contained in:
parent
f4a4909ead
commit
d21795ffd7
2 changed files with 9 additions and 1 deletions
|
@ -22,7 +22,7 @@
|
|||
width: 100%;
|
||||
margin: 4rem auto;
|
||||
|
||||
@media screen and (max-width: 1024px) {
|
||||
@media screen and (max-width: $desktop) {
|
||||
margin: 0;
|
||||
|
||||
.close {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue