diff options
-rw-r--r-- | viewer/src/views/ItemThumbnail.vue | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/viewer/src/views/ItemThumbnail.vue b/viewer/src/views/ItemThumbnail.vue index 1c9e206..c512004 100644 --- a/viewer/src/views/ItemThumbnail.vue +++ b/viewer/src/views/ItemThumbnail.vue | |||
@@ -40,7 +40,7 @@ | |||
40 | size="4x" | 40 | size="4x" |
41 | /> | 41 | /> |
42 | </div> | 42 | </div> |
43 | {{ item.title }} | 43 | <div v-text="item.title" /> |
44 | </div> | 44 | </div> |
45 | </div> | 45 | </div> |
46 | </template> | 46 | </template> |
@@ -74,6 +74,7 @@ const icon = computed(() => navigation.getIcon(props.item)); | |||
74 | @import "~@/assets/scss/theme"; | 74 | @import "~@/assets/scss/theme"; |
75 | 75 | ||
76 | .thumbnailOther { | 76 | .thumbnailOther { |
77 | color: $text-light; | ||
77 | width: $thumbnail-other-size; | 78 | width: $thumbnail-other-size; |
78 | height: $thumbnail-other-size; | 79 | height: $thumbnail-other-size; |
79 | padding-top: $body-line-height * 1em; | 80 | padding-top: $body-line-height * 1em; |