mirror of https://github.com/Lissy93/dashy.git
🐛 Fixes overlapping edit menu (#311)
This commit is contained in:
parent
ba696143bb
commit
e9344fc122
|
@ -23,6 +23,7 @@
|
||||||
:class="`item-group-container `
|
:class="`item-group-container `
|
||||||
+ `orientation-${layout} `
|
+ `orientation-${layout} `
|
||||||
+ `item-size-${itemSizeBound} `
|
+ `item-size-${itemSizeBound} `
|
||||||
|
+ (isEditMode ? 'edit-mode ' : '')
|
||||||
+ (singleSectionView ? 'single-section-view ' : '')
|
+ (singleSectionView ? 'single-section-view ' : '')
|
||||||
+ (this.colCount ? `col-count-${this.colCount} ` : '')"
|
+ (this.colCount ? `col-count-${this.colCount} ` : '')"
|
||||||
>
|
>
|
||||||
|
@ -350,6 +351,11 @@ export default {
|
||||||
/* Hide when search term returns nothing */
|
/* Hide when search term returns nothing */
|
||||||
.no-results { display: none; }
|
.no-results { display: none; }
|
||||||
|
|
||||||
|
/* Additional spacing when in edit mode */
|
||||||
|
&.edit-mode {
|
||||||
|
margin-bottom: 12rem;
|
||||||
|
}
|
||||||
|
|
||||||
/* When in single-section view mode */
|
/* When in single-section view mode */
|
||||||
&.single-section-view {
|
&.single-section-view {
|
||||||
display: block;
|
display: block;
|
||||||
|
|
Loading…
Reference in New Issue