aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/Gallery.vue
diff options
context:
space:
mode:
authorZero~Informatique2019-12-21 21:15:59 +0100
committerZero~Informatique2019-12-21 21:15:59 +0100
commitc2b4c5d144db17ebf2dc9de32ba25cc836831ae2 (patch)
tree0969ca062ae922d0f65e5e4bf24ecaee137ff6e4 /viewer/src/views/Gallery.vue
parentdd7e1ec5bb5f9d8ad5aab2c99e80146958e592a0 (diff)
downloadldgallery-c2b4c5d144db17ebf2dc9de32ba25cc836831ae2.tar.gz
viewer: Improved the Gallery type definitions. Basic display of the images and thumbnails
example: "thumbnails" instead of "thumbs"
Diffstat (limited to 'viewer/src/views/Gallery.vue')
-rw-r--r--viewer/src/views/Gallery.vue8
1 files changed, 1 insertions, 7 deletions
diff --git a/viewer/src/views/Gallery.vue b/viewer/src/views/Gallery.vue
index 10ff323..954903a 100644
--- a/viewer/src/views/Gallery.vue
+++ b/viewer/src/views/Gallery.vue
@@ -1,5 +1,5 @@
1<template> 1<template>
2 <div id="test-flex-col"> 2 <div>
3 <gallery-directory v-if="isDirectory" :directory="currentItem" /> 3 <gallery-directory v-if="isDirectory" :directory="currentItem" />
4 <gallery-image v-if="isImage" :image="currentItem" /> 4 <gallery-image v-if="isImage" :image="currentItem" />
5 </div> 5 </div>
@@ -50,10 +50,4 @@ export default class Root extends Vue {
50</script> 50</script>
51 51
52<style lang="scss"> 52<style lang="scss">
53#test-flex-col {
54 display: flex;
55 flex-direction: column;
56 align-items: center;
57 justify-content: center;
58}
59</style> 53</style>