Fixed Back to top button appearance issue
- Changed back to top button style when its getting disappear.
- So that button should not come over the page contents.
Signed-off-by: Suren Neware <sneware9@in.ibm.com>
Change-Id: I0a013c2bcdd291edd9f52566130882360451a280
diff --git a/src/components/Global/ButtonBackToTop.vue b/src/components/Global/ButtonBackToTop.vue
index 9608c4a..b2c5448 100644
--- a/src/components/Global/ButtonBackToTop.vue
+++ b/src/components/Global/ButtonBackToTop.vue
@@ -49,7 +49,7 @@
position: fixed;
bottom: 24px;
right: 24px;
- z-index: $zindex-fixed;
+ z-index: -1;
box-shadow: $box-shadow;
opacity: 0;
transition: $transition-base;
@@ -60,5 +60,6 @@
}
.showBtn {
opacity: 1;
+ z-index: $zindex-fixed;
}
</style>