aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/GalleryPicture.vue
diff options
context:
space:
mode:
authorZero~Informatique2020-01-31 06:55:37 +0100
committerZero~Informatique2020-01-31 06:55:37 +0100
commit914aa63cb65f869be9b1707c160847be16f79a68 (patch)
tree9a180ff39dccaec17c6c111931aee1bbf04eaf0a /viewer/src/views/GalleryPicture.vue
parent252dd6fc6f53ecd8b28e05a0514429472d53d08e (diff)
downloadldgallery-914aa63cb65f869be9b1707c160847be16f79a68.tar.gz
viewer: unified CSS classes to kebab case
Diffstat (limited to 'viewer/src/views/GalleryPicture.vue')
-rw-r--r--viewer/src/views/GalleryPicture.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/viewer/src/views/GalleryPicture.vue b/viewer/src/views/GalleryPicture.vue
index 323333a..9f26282 100644
--- a/viewer/src/views/GalleryPicture.vue
+++ b/viewer/src/views/GalleryPicture.vue
@@ -21,7 +21,7 @@
21 <div 21 <div
22 v-dragscroll 22 v-dragscroll
23 class="scrollbar" 23 class="scrollbar"
24 :class="{fitToScreen: !$uiStore.fullscreen, originalSize: $uiStore.fullscreen}" 24 :class="{'fit-to-screen': !$uiStore.fullscreen, 'original-size': $uiStore.fullscreen}"
25 @click="onClick" 25 @click="onClick"
26 @dragscrollstart="dragging=true" 26 @dragscrollstart="dragging=true"
27 > 27 >
@@ -50,7 +50,7 @@ export default class GalleryPicture extends Vue {
50</script> 50</script>
51 51
52<style lang="scss"> 52<style lang="scss">
53.fitToScreen { 53.fit-to-screen {
54 display: flex; 54 display: flex;
55 justify-content: space-around; 55 justify-content: space-around;
56 height: 100%; 56 height: 100%;
@@ -59,7 +59,7 @@ export default class GalleryPicture extends Vue {
59 cursor: zoom-in; 59 cursor: zoom-in;
60 } 60 }
61} 61}
62.originalSize { 62.original-size {
63 display: block; 63 display: block;
64 text-align: center; 64 text-align: center;
65 cursor: grab; 65 cursor: grab;