diff --git a/TODO.md b/TODO.md index a9b87aa..b23b994 100644 --- a/TODO.md +++ b/TODO.md @@ -1,2 +1,3 @@ ## Services Page * Have background change as scrolling down the services? +* menu items (large devices) = nice big images with text coming out diff --git a/components/GalleryFeatured.vue b/components/GalleryFeatured.vue index b8b8550..0e97110 100644 --- a/components/GalleryFeatured.vue +++ b/components/GalleryFeatured.vue @@ -3,7 +3,8 @@ diff --git a/components/GalleryPage.vue b/components/GalleryPage.vue index 24a7143..73d0efc 100644 --- a/components/GalleryPage.vue +++ b/components/GalleryPage.vue @@ -6,10 +6,12 @@ @@ -36,11 +38,15 @@ export default { data () { return { featuredImageHeight: '16rem', - imageViewerIsVisible: false + imageViewerIsVisible: false, + activeRow: 0 } }, methods: { + handleFeaturedClick (index) { + this.activeRow = index + } } } diff --git a/components/GalleryThumbs.vue b/components/GalleryThumbs.vue index b0b6078..231fb57 100644 --- a/components/GalleryThumbs.vue +++ b/components/GalleryThumbs.vue @@ -3,7 +3,9 @@