diff --git a/webapp/src/components/tabContentComponents/galleryComponents/galleryCard.vue b/webapp/src/components/tabContentComponents/galleryComponents/galleryCard.vue index f53e93be..0e010254 100644 --- a/webapp/src/components/tabContentComponents/galleryComponents/galleryCard.vue +++ b/webapp/src/components/tabContentComponents/galleryComponents/galleryCard.vue @@ -1,11 +1,14 @@ @@ -97,6 +104,11 @@ export default { type: Object, required: true, }, + thumbnailOnly: { + type: Boolean, + default: false, + required: false, + }, }, emits: ["viewer-requested", "update-requested"], @@ -210,6 +222,15 @@ ul { text-align: center; } +.thumbnail-only-card { + width: auto; +} + +.thumbnail-only-container { + height: 150px; + width: 150px; +} + .thumbnail-fit { max-height: 120px; max-width: 240px; @@ -217,6 +238,11 @@ ul { overflow-y: hidden; } +.thumbnail-fit.thumbnail-only { + max-height: 150px; + max-width: 150px; +} + .clickable { cursor: pointer; }