Skip to content

Commit 7727bc7

Browse files
committed
fix: set min heght to page container, that helps to avoid layout shift on footer
1 parent ec38874 commit 7727bc7

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

packages/apps/dashboard/client/src/app/styles/_page-wrapper.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,15 @@
1212
.container {
1313
margin: auto;
1414
padding: 30px 80px 100px;
15+
min-height: calc(100vh - 82px);
1516

1617
@media (max-width: 1200px) {
1718
padding: 24px 16px;
1819
}
20+
21+
@media (max-width: 900px) {
22+
min-height: calc(100vh - 62px);
23+
}
1924
}
2025

2126
@media (max-width: 600px) {

0 commit comments

Comments
 (0)