diff --git a/components/vf-back-to-top/CHANGELOG.md b/components/vf-back-to-top/CHANGELOG.md index 453775800a..15d5e6c3a4 100644 --- a/components/vf-back-to-top/CHANGELOG.md +++ b/components/vf-back-to-top/CHANGELOG.md @@ -1,3 +1,7 @@ +### 1.0.10 + +* Fixed: VF-Back to top button used to hide behind the footer [Tracking issue](https://github.com/visual-framework/vf-core/issues/2385) + ### 1.0.9 * chore : Version bump diff --git a/components/vf-back-to-top/vf-back-to-top.scss b/components/vf-back-to-top/vf-back-to-top.scss index 6983165398..f721403763 100644 --- a/components/vf-back-to-top/vf-back-to-top.scss +++ b/components/vf-back-to-top/vf-back-to-top.scss @@ -39,7 +39,8 @@ .vf-back-top--floating { position: fixed; - right: 5rem; - top: calc(100vh - 6rem); - z-index: set-layer(--vf-z-index--box-link); + bottom: max(1rem, env(safe-area-inset-bottom)); + right: 1rem; + top: auto; + z-index: 1300; }