-
+
import GalleryFeatured from '@/components/GalleryFeatured'
import GalleryThumbs from '@/components/GalleryThumbs'
+import GalleryImageViewer from '@/components/GalleryImageViewer'
export default {
components: {
GalleryFeatured,
- GalleryThumbs
+ GalleryThumbs,
+ GalleryImageViewer
},
props: {
@@ -43,9 +41,6 @@ export default {
},
methods: {
- toggleImageViewer () {
- this.imageViewerIsVisible = !this.imageViewerIsVisible;
- }
}
}
@@ -63,11 +58,6 @@ export default {
height: 100%;
top: 0;
left: 0;
- background: linear-gradient(
- to bottom left,
- magenta,
- cyan
- ); // TEMP
}
@media (max-width: $bp__layout) {
@@ -93,19 +83,6 @@ export default {
font-size: 10em;
cursor: pointer;
}
-
- .image-viewer {
- z-index: 50;
-
- transition: opacity 1s; //TEMP
- opacity: 0;
- pointer-events: none;
-
- &.is-visible {
- opacity: 1;
- pointer-events: auto;
- }
- }
}
@media (min-width: $bp__layout) {