diff options
Diffstat (limited to 'viewer/src/components')
-rw-r--r-- | viewer/src/components/LdGallery.vue | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/viewer/src/components/LdGallery.vue b/viewer/src/components/LdGallery.vue index 169bc54..16e9f7c 100644 --- a/viewer/src/components/LdGallery.vue +++ b/viewer/src/components/LdGallery.vue | |||
@@ -24,7 +24,7 @@ | |||
24 | <ld-thumbnail :item="item" /> | 24 | <ld-thumbnail :item="item" /> |
25 | </router-link> | 25 | </router-link> |
26 | </div> | 26 | </div> |
27 | <div v-if="hasNoResults()">{{noresult}}</div> | 27 | <div v-if="hasNoResults()" class="noresult">{{noresult}}</div> |
28 | </div> | 28 | </div> |
29 | </template> | 29 | </template> |
30 | 30 | ||
@@ -44,4 +44,7 @@ export default class LdPicture extends Vue { | |||
44 | </script> | 44 | </script> |
45 | 45 | ||
46 | <style lang="scss"> | 46 | <style lang="scss"> |
47 | .thumbnail-tiles .noresult { | ||
48 | margin-top: 40px; | ||
49 | } | ||
47 | </style> | 50 | </style> |