Skip to content

Commit 6b4ad16

Browse files
committed
Fix style
1 parent 81b574b commit 6b4ad16

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

components/Default.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,8 +330,8 @@ module.exports = {
330330
})
331331
Array.from(document.querySelectorAll('.dot'))
332332
.forEach((dot, idx) => {
333-
if (idx === this.slideIndex) dot.classList.add('active')
334-
else dot.classList.remove('active')
333+
if (idx === this.slideIndex) dot.classList.add('active-slide')
334+
else dot.classList.remove('active-slide')
335335
})
336336
}
337337
}
@@ -1019,7 +1019,7 @@ img.logo {
10191019
transition: background-color 0.2s ease;
10201020
}
10211021
1022-
.active, .dot:hover {
1022+
.active-slide, .dot:hover {
10231023
cursor: pointer;
10241024
background-color: #5b152e;
10251025
}

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ <h1>Update Juncture site</h1>
188188
console.log(window.location)
189189
const ENV = window.location.hostname === 'localhost' || window.location.hostname.indexOf('gitpod') > 0 ? 'DEV' : 'PROD'
190190
let isJuncture = window.location.hostname.indexOf('juncture-digital.org') === 0 || ENV === 'DEV'
191-
const junctureVersion = 'v0.4.4'
191+
const junctureVersion = 'v0.4.5'
192192
let junctureVersionHash
193193

194194
const referrerUrl = document.referrer

0 commit comments

Comments
 (0)