From 6b4ad1645a2de0082b10d84e0b59efe58f43a2a6 Mon Sep 17 00:00:00 2001 From: rsnyder Date: Wed, 28 Jul 2021 01:38:03 +0000 Subject: [PATCH] Fix style --- components/Default.vue | 6 +++--- index.html | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/components/Default.vue b/components/Default.vue index 7811be75..4a861aba 100644 --- a/components/Default.vue +++ b/components/Default.vue @@ -330,8 +330,8 @@ module.exports = { }) Array.from(document.querySelectorAll('.dot')) .forEach((dot, idx) => { - if (idx === this.slideIndex) dot.classList.add('active') - else dot.classList.remove('active') + if (idx === this.slideIndex) dot.classList.add('active-slide') + else dot.classList.remove('active-slide') }) } } @@ -1019,7 +1019,7 @@ img.logo { transition: background-color 0.2s ease; } -.active, .dot:hover { +.active-slide, .dot:hover { cursor: pointer; background-color: #5b152e; } diff --git a/index.html b/index.html index dd597d0a..978f787d 100644 --- a/index.html +++ b/index.html @@ -188,7 +188,7 @@

Update Juncture site

console.log(window.location) const ENV = window.location.hostname === 'localhost' || window.location.hostname.indexOf('gitpod') > 0 ? 'DEV' : 'PROD' let isJuncture = window.location.hostname.indexOf('juncture-digital.org') === 0 || ENV === 'DEV' - const junctureVersion = 'v0.4.4' + const junctureVersion = 'v0.4.5' let junctureVersionHash const referrerUrl = document.referrer