aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/views/PanelLeft.vue
diff options
context:
space:
mode:
Diffstat (limited to 'viewer/src/views/PanelLeft.vue')
-rw-r--r--viewer/src/views/PanelLeft.vue9
1 files changed, 5 insertions, 4 deletions
diff --git a/viewer/src/views/PanelLeft.vue b/viewer/src/views/PanelLeft.vue
index 6341beb..f8d6faf 100644
--- a/viewer/src/views/PanelLeft.vue
+++ b/viewer/src/views/PanelLeft.vue
@@ -38,9 +38,9 @@
38 /> 38 />
39 </div> 39 </div>
40 <b-collapse animation="slide" :open.sync="infoOpen"> 40 <b-collapse animation="slide" :open.sync="infoOpen">
41 <h1 slot="trigger" class="title flex"> 41 <h1 slot="trigger" class="flex title">
42 Informations 42 {{ $t("panelLeft.information.title") }}
43 <fa-icon :icon="infoOpen ? 'caret-up' : 'caret-down'" /> 43 <fa-icon :icon="infoOpen ? 'caret-down' : 'caret-up'" />
44 </h1> 44 </h1>
45 <ld-information :item="$galleryStore.currentItem" /> 45 <ld-information :item="$galleryStore.currentItem" />
46 </b-collapse> 46 </b-collapse>
@@ -105,7 +105,8 @@ export default class PanelLeft extends Vue {
105 user-select: none; 105 user-select: none;
106 > svg { 106 > svg {
107 color: $link; 107 color: $link;
108 } 108 margin-top: 2px; // Fixes a vertical centering issue with the carret
109 }
109 } 110 }
110} 111}
111</style> 112</style>