Skip to content

Commit

Permalink
fix: sticky footer overlay
Browse files Browse the repository at this point in the history
problem: footer displayed on top of other components hiding them and preventing page scroll
solution: removed `position: fixed` style on footer component to allow it to adjust relative to components positioned before it.

fixes 1201686064967364
  • Loading branch information
johnotu committed Jan 20, 2022
1 parent 8bc7b1a commit 9074d3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ tr:nth-child(even) {

/* Footer */
.footer {
position: fixed;
/* position: fixed; */
left: 0;
bottom: 0;
width: 100%;
Expand Down

0 comments on commit 9074d3b

Please sign in to comment.