Skip to content

Commit

Permalink
Fix style
Browse files Browse the repository at this point in the history
  • Loading branch information
rsnyder committed Jul 28, 2021
1 parent 81b574b commit 6b4ad16
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions components/Default.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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')
})
}
}
Expand Down Expand Up @@ -1019,7 +1019,7 @@ img.logo {
transition: background-color 0.2s ease;
}
.active, .dot:hover {
.active-slide, .dot:hover {
cursor: pointer;
background-color: #5b152e;
}
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ <h1>Update Juncture site</h1>
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
Expand Down

0 comments on commit 6b4ad16

Please sign in to comment.