Skip to content

Commit

Permalink
fix: Fix applications margin in dynamic Container Section when mobile -
Browse files Browse the repository at this point in the history
Meeds-io/MIPs#155

Prior to this change, when making the dynamic section displayed in columns in mobile, a padding-bottom is applied on applications, but last one, while the padding bottom has to be added on section only. This change will delete the padding-bottom in this situation to fix the UI glich.
  • Loading branch information
boubaker committed Sep 5, 2024
1 parent b89fc04 commit d9f31e1
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -466,3 +466,9 @@
.grid-cell-rowspan(xl, 12);
.grid-cell-colspan(xl, 12);
}

@media (max-width: @maxMobileWidth) {
.VuetifyApp .layout-sections-parent .layout-mobile-columns .flex-cell:has(.layout-application) {
padding-bottom: 0;
}
}

0 comments on commit d9f31e1

Please sign in to comment.