mirror of
https://github.com/Lissy93/dashy.git
synced 2024-11-30 20:26:56 +03:00
🐛 Fixes overlapping edit menu (#311)
This commit is contained in:
parent
ba696143bb
commit
e9344fc122
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user