update
This commit is contained in:
parent
639d0c9ed8
commit
ee04e31562
|
@ -23,7 +23,7 @@ export default {
|
||||||
components: {
|
components: {
|
||||||
GalleryFeatured,
|
GalleryFeatured,
|
||||||
GalleryThumbs,
|
GalleryThumbs,
|
||||||
GalleryImageViewer
|
GalleryImageViewer,
|
||||||
},
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
|
@ -118,6 +118,10 @@ export default {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.gallery__nav {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
|
||||||
.close-viewer {
|
.close-viewer {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
|
|
@ -5,7 +5,6 @@
|
||||||
<li v-for="(gallery, index) in galleries"
|
<li v-for="(gallery, index) in galleries"
|
||||||
:key="index">
|
:key="index">
|
||||||
<ul class="gallery-thumbs__row">
|
<ul class="gallery-thumbs__row">
|
||||||
<NavArrow class="gallery-thumbs__slider mobile-only" />
|
|
||||||
<li class="featured-image mobile-only"
|
<li class="featured-image mobile-only"
|
||||||
:style="{ 'height': featuredHeight }">
|
:style="{ 'height': featuredHeight }">
|
||||||
</li>
|
</li>
|
||||||
|
@ -21,11 +20,8 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
import NavArrow from '@/components/NavArrow'
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
components: {
|
components: {
|
||||||
NavArrow
|
|
||||||
},
|
},
|
||||||
|
|
||||||
props: {
|
props: {
|
||||||
|
@ -45,6 +41,9 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
slideRight(index) {
|
||||||
|
console.log('slideRight: ', index)
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
|
@ -22,6 +22,8 @@ export default {
|
||||||
|
|
||||||
<style lang="scss" scoped>
|
<style lang="scss" scoped>
|
||||||
.nav-arrow {
|
.nav-arrow {
|
||||||
|
cursor: pointer;
|
||||||
|
|
||||||
font-size: 3em;
|
font-size: 3em;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
background-color: rgba(blue, .3);
|
background-color: rgba(blue, .3);
|
||||||
|
|
Loading…
Reference in New Issue