diff options
Diffstat (limited to 'viewer/src/views/GalleryDirectory.vue')
-rw-r--r-- | viewer/src/views/GalleryDirectory.vue | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/viewer/src/views/GalleryDirectory.vue b/viewer/src/views/GalleryDirectory.vue index 1dda027..d464a07 100644 --- a/viewer/src/views/GalleryDirectory.vue +++ b/viewer/src/views/GalleryDirectory.vue | |||
@@ -1,7 +1,7 @@ | |||
1 | <template> | 1 | <template> |
2 | <div> | 2 | <div> |
3 | <strong>Directory: {{directory.path}}</strong> | 3 | <strong>Directory: {{directory.path}}</strong> |
4 | <div class="flex-thumbnails"> | 4 | <div class="flex"> |
5 | <div v-for="(item) in directory.properties.items" :key="item.path"> | 5 | <div v-for="(item) in directory.properties.items" :key="item.path"> |
6 | <router-link :to="item.path"> | 6 | <router-link :to="item.path"> |
7 | <gallery-thumbnail :item="item" /> | 7 | <gallery-thumbnail :item="item" /> |
@@ -24,7 +24,4 @@ export default class GalleryDirectory extends Vue { | |||
24 | </script> | 24 | </script> |
25 | 25 | ||
26 | <style lang="scss"> | 26 | <style lang="scss"> |
27 | .flex-thumbnails { | ||
28 | display: flex; | ||
29 | } | ||
30 | </style> | 27 | </style> |