fix: empty wrappers without items should not be visible in view mode (#1026)

This commit is contained in:
Meier Lukas
2024-08-25 11:38:05 +02:00
committed by GitHub
parent ec2de901aa
commit 022fad92a9

View File

@@ -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;
}