fix: centered columns in funnel dnd for mobile

This commit is contained in:
2025-08-17 19:35:21 +04:00
parent e5e87f775d
commit 3ccebeb123
4 changed files with 14 additions and 9 deletions

View File

@ -1,8 +1,16 @@
.container {
cursor: pointer;
height: calc(100vh - 150px);
@media (max-width: 48em) {
width: 80vw;
}
}
.inner-container {
border-radius: var(--mantine-spacing-md);
flex-wrap: nowrap;
cursor: pointer;
@mixin light {
background-color: var(--color-light-aqua);
@ -10,9 +18,4 @@
@mixin dark {
background-color: var(--mantine-color-dark-6);
}
width: fit-content;
@media (max-width: 48em) {
width: 80vw;
}
}