From d3914e67c39810a6b590f085d0d2181b256b9c4b Mon Sep 17 00:00:00 2001 From: Jan Faracik <43062514+janfaracik@users.noreply.github.com> Date: Thu, 23 Dec 2021 19:43:02 +0000 Subject: [PATCH] Fix sticky bottom not aligning to left correctly --- war/src/main/less/base/style.less | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/war/src/main/less/base/style.less b/war/src/main/less/base/style.less index 283eb1b41e50..1968036195fa 100644 --- a/war/src/main/less/base/style.less +++ b/war/src/main/less/base/style.less @@ -447,8 +447,20 @@ div.behavior-loading { } .bottom-sticker-inner { + position: relative; + padding: 1em 0; + z-index: 0; + + &::before { + content: ""; + position: absolute; + top: 0; + left: calc(-2rem - 2px); + bottom: 0; + right: 0; background: var(--background); - padding: 1em 0; + z-index: -1; + } } .top-sticker,