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 {
|
.status {
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
padding-left: 16px;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -178,7 +177,6 @@ section {
|
||||||
.header {
|
.header {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
margin: 16px;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.title {
|
.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