Skip to content

Commit

Permalink
fix($plugin-back-to-top): use $accent-color. (close: #1121) (#1122)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmitry Sharshakov aka. sh7dm authored and ulivz committed Dec 23, 2018
1 parent 97faabf commit 929da11
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/@vuepress/plugin-back-to-top/BackToTop.vue
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,19 @@ export default {
}
</script>

<style scoped>
<style lang='stylus' scoped>
.go-to-top {
cursor: pointer;
position: fixed;
bottom: 2rem;
right: 2.5rem;
width: 2rem;
color: #72cda4;
color: $accentColor;
z-index: 1;
}
.go-to-top:hover {
color: #3eaf7c;
color: lighten($accentColor, 30%);
}
@media (max-width: 959px) {
Expand Down

0 comments on commit 929da11

Please sign in to comment.