fix: kanban board layout on mobile
This commit is contained in:
parent
fc0e3e0d51
commit
a23b4a96ee
2 changed files with 3 additions and 2 deletions
|
@ -23,7 +23,7 @@ $filter-container-top-link-share-list: -47px;
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-end;
|
justify-content: flex-end;
|
||||||
|
|
||||||
.button:not(:last-child) {
|
.button:not(:last-of-type) {
|
||||||
margin-right: .5rem;
|
margin-right: .5rem;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -139,6 +139,7 @@ async function loadList(listIdToLoad: number) {
|
||||||
@media screen and (max-width: $tablet) {
|
@media screen and (max-width: $tablet) {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: center;
|
justify-content: center;
|
||||||
|
flex-direction: column;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -149,7 +150,7 @@ async function loadList(listIdToLoad: number) {
|
||||||
font-size: .75rem;
|
font-size: .75rem;
|
||||||
box-shadow: var(--shadow-sm);
|
box-shadow: var(--shadow-sm);
|
||||||
height: $switch-view-height;
|
height: $switch-view-height;
|
||||||
margin-bottom: 1rem;
|
margin: 0 auto 1rem;
|
||||||
padding: .5rem;
|
padding: .5rem;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
|
|
Loading…
Add table
Reference in a new issue