From 6c78b9e55c7b4d00715e854d1370b1b3f9903ec5 Mon Sep 17 00:00:00 2001 From: aSouchereau Date: Thu, 11 Jul 2024 11:56:52 -0400 Subject: [PATCH 1/4] Fix carousel slide sizing --- .../{Content => Utility}/Carousel.vue | 20 ++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) rename src/components/{Content => Utility}/Carousel.vue (84%) diff --git a/src/components/Content/Carousel.vue b/src/components/Utility/Carousel.vue similarity index 84% rename from src/components/Content/Carousel.vue rename to src/components/Utility/Carousel.vue index 597e4e8..82d1841 100644 --- a/src/components/Content/Carousel.vue +++ b/src/components/Utility/Carousel.vue @@ -5,7 +5,7 @@ const { Carousel } = pkg; import "@fancyapps/ui/dist/carousel/carousel.css"; import {onMounted, onUnmounted, ref} from "vue"; -import ActionButton from "@/components/Content/ActionButton.vue"; +import ActionButton from "@/components/Utility/ActionButton.vue"; const props = defineProps({ options: Object, @@ -26,17 +26,14 @@ onUnmounted(() => { carousel = null; }); -function navigateToImage(destination: string) { -console.log(destination); -} - \ No newline at end of file From 54ac40980c74a45a6fcf7a55387b11e9c9193e5c Mon Sep 17 00:00:00 2001 From: aSouchereau Date: Thu, 11 Jul 2024 12:09:50 -0400 Subject: [PATCH 2/4] Refactor component directory --- src/components/Pages/Gallery.vue | 2 +- src/components/Pages/Index/FeaturedSection.vue | 4 ++-- src/components/Pages/Index/HeroSection.vue | 2 +- src/components/{Content => Utility}/ActionButton.vue | 0 src/components/{Content => Utility}/AlbumThumb.vue | 0 5 files changed, 4 insertions(+), 4 deletions(-) rename src/components/{Content => Utility}/ActionButton.vue (100%) rename src/components/{Content => Utility}/AlbumThumb.vue (100%) diff --git a/src/components/Pages/Gallery.vue b/src/components/Pages/Gallery.vue index 93b8357..975717b 100644 --- a/src/components/Pages/Gallery.vue +++ b/src/components/Pages/Gallery.vue @@ -1,6 +1,6 @@ From 2b3af531538e240f191fdf031f0e6c3f20196ca0 Mon Sep 17 00:00:00 2001 From: aSouchereau Date: Fri, 26 Jul 2024 14:29:41 -0400 Subject: [PATCH 4/4] Fix gallery masonry styles --- src/components/Pages/Gallery.vue | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/components/Pages/Gallery.vue b/src/components/Pages/Gallery.vue index 13817da..2fa9406 100644 --- a/src/components/Pages/Gallery.vue +++ b/src/components/Pages/Gallery.vue @@ -92,6 +92,14 @@ grid-auto-rows: 15rem; row-gap: 1rem; column-gap: 1rem; + margin-bottom: 3rem; + } + + li { + list-style: none; + } + img { + width: 100%; } @media only screen