🐛 Fixes overlapping edit menu (#311)

This commit is contained in:
Alicia Sykes 2021-11-05 17:54:43 +00:00
parent ba696143bb
commit e9344fc122

View File

@ -23,6 +23,7 @@
:class="`item-group-container `
+ `orientation-${layout} `
+ `item-size-${itemSizeBound} `
+ (isEditMode ? 'edit-mode ' : '')
+ (singleSectionView ? 'single-section-view ' : '')
+ (this.colCount ? `col-count-${this.colCount} ` : '')"
>
@ -350,6 +351,11 @@ export default {
/* Hide when search term returns nothing */
.no-results { display: none; }
/* Additional spacing when in edit mode */
&.edit-mode {
margin-bottom: 12rem;
}
/* When in single-section view mode */
&.single-section-view {
display: block;