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%;
|
width: 100%;
|
||||||
margin: 4rem auto;
|
margin: 4rem auto;
|
||||||
|
|
||||||
@media screen and (max-width: 1024px) {
|
@media screen and (max-width: $desktop) {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
||||||
.close {
|
.close {
|
||||||
|
|
|
@ -4,6 +4,10 @@
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
background-color: $light-background;
|
background-color: $light-background;
|
||||||
|
|
||||||
|
@media screen and (max-width: $desktop) {
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.subtitle {
|
.subtitle {
|
||||||
color: $grey-500;
|
color: $grey-500;
|
||||||
|
|
||||||
|
@ -197,6 +201,10 @@
|
||||||
|
|
||||||
.task-view-container {
|
.task-view-container {
|
||||||
padding-bottom: 1rem;
|
padding-bottom: 1rem;
|
||||||
|
|
||||||
|
@media screen and (max-width: $desktop) {
|
||||||
|
padding-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.task-view * {
|
.task-view * {
|
||||||
opacity: 0;
|
opacity: 0;
|
||||||
|
|
Loading…
Reference in a new issue