aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/MainLayout.vue
diff options
context:
space:
mode:
authorZero~Informatique2020-01-29 04:53:35 +0100
committerNotkea2020-01-29 21:59:12 +0100
commit8d543ab94d3678728466d3627e0d419ec00f3010 (patch)
tree69cc8bcba4314a30aba2cf7db4312155ef2bf76c /viewer/src/views/MainLayout.vue
parent084c509fad0fdf2415587e0e3af8e86fd306447a (diff)
downloadldgallery-8d543ab94d3678728466d3627e0d419ec00f3010.tar.gz
viewer: finalized the thumbnails view layouts. implemented thumbnails lazy-loading
Diffstat (limited to 'viewer/src/views/MainLayout.vue')
-rw-r--r--viewer/src/views/MainLayout.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/viewer/src/views/MainLayout.vue b/viewer/src/views/MainLayout.vue
index 5308205..de6f8af 100644
--- a/viewer/src/views/MainLayout.vue
+++ b/viewer/src/views/MainLayout.vue
@@ -21,7 +21,7 @@
21 <div :class="{fullscreen: $uiStore.fullscreen}"> 21 <div :class="{fullscreen: $uiStore.fullscreen}">
22 <panel-top class="layout layout-top" /> 22 <panel-top class="layout layout-top" />
23 <panel-left class="layout layout-left" /> 23 <panel-left class="layout layout-left" />
24 <router-view class="layout layout-content" /> 24 <router-view class="layout layout-content scrollbar" />
25 <ld-button-fullscreen /> 25 <ld-button-fullscreen />
26 <b-loading :active="isLoading" is-full-page /> 26 <b-loading :active="isLoading" is-full-page />
27 </div> 27 </div>
@@ -93,6 +93,7 @@ html {
93 top: var(--layout-top); 93 top: var(--layout-top);
94 left: var(--layout-left); 94 left: var(--layout-left);
95 z-index: 3; 95 z-index: 3;
96 overflow-x: hidden;
96 } 97 }
97} 98}
98.fullscreen { 99.fullscreen {