Skip to content

Commit

Permalink
fix: empty wrappers without items should not be visible in view mode (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Meierschlumpf authored Aug 25, 2024
1 parent ec2de90 commit 022fad9
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions apps/nextjs/src/styles/gridstack.scss
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,9 @@
transition: none;
}

.gridstack-empty-wrapper {
height: 0px;
min-height: 0px !important;
/**
* Hide empty wrapper (class is used when no items are inside and not in edit mode)
*/
.grid-stack-empty-wrapper {
display: none !important;
}

0 comments on commit 022fad9

Please sign in to comment.