Skip to content

Commit

Permalink
css: fix main container height
Browse files Browse the repository at this point in the history
Setting a minimum height instead of a fixed height fixes footer overflow
issues.

Signed-off-by: Yann Soubeyrand <yann.soubeyrand@gmx.fr>
  • Loading branch information
yann-soubeyrand committed May 17, 2023
1 parent 13db293 commit 2dc26d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/scss/_main-container.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
.td-outer {
display: flex;
flex-direction: column;
height: 100vh;
min-height: 100vh;
}

// The outer page container for the default base template.
Expand Down

0 comments on commit 2dc26d6

Please sign in to comment.