responsive
This commit is contained in:
parent
7d001d4b19
commit
855134aa73
1 changed files with 30 additions and 2 deletions
|
|
@ -170,7 +170,6 @@ section {
|
|||
}
|
||||
.status {
|
||||
justify-content: center;
|
||||
padding-left: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
@ -178,7 +177,6 @@ section {
|
|||
.header {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
margin: 16px;
|
||||
}
|
||||
|
||||
.title {
|
||||
|
|
@ -207,3 +205,33 @@ section {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 635px) {
|
||||
.column {
|
||||
width: 100%;
|
||||
padding-right: 0;
|
||||
}
|
||||
.empty-task {
|
||||
max-width: 100%;
|
||||
}
|
||||
#inprogress {
|
||||
display: flex;
|
||||
width: calc(100vw - 85px);
|
||||
overflow-x: auto;
|
||||
}
|
||||
app-task {
|
||||
padding-right: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 450px) {
|
||||
#inprogress {
|
||||
width: calc(100vw - 55px);
|
||||
}
|
||||
|
||||
.search {
|
||||
input {
|
||||
width: calc(100vw - 80px);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue