Skip to content

Commit

Permalink
Fix sticky bottom not aligning to left correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
janfaracik committed Dec 23, 2021
1 parent e27a8c1 commit d3914e6
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion war/src/main/less/base/style.less
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit d3914e6

Please sign in to comment.