Commit b645507e authored by Abdullah Yassin's avatar Abdullah Yassin
Browse files

Issue #3280063: Fix footer position bottom when page have a little content

parent ed5879c5
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -514,3 +514,9 @@ pre {
select::-ms-expand {
  display: none;
}

.dialog-off-canvas-main-canvas {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
+1 −1
Original line number Diff line number Diff line
/* Insert your VARTHEME_BS4_SUBTHEME footer custom SASS styling. */
.footer-wrapper {
  margin-top: auto;
  background-color: #f2f2f2;
}
.footer-wrapper .footer {
  margin-top: 5rem;
  padding-top: 0;
  padding-bottom: 0;
  border: 0;
+9 −3
Original line number Diff line number Diff line
@@ -634,3 +634,9 @@ pre {
select::-ms-expand {
  display: none;
}

.dialog-off-canvas-main-canvas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
 No newline at end of file
+1 −1
Original line number Diff line number Diff line
@@ -10,12 +10,12 @@

.footer-wrapper {
  background-color: $footer-wrapper-bg;
  margin-top: auto;

  .footer {
    border: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: ($spacer * 5);

    section.region-footer {
      display: flex;
+6 −0
Original line number Diff line number Diff line
@@ -514,3 +514,9 @@ pre {
select::-ms-expand {
  display: none;
}

.dialog-off-canvas-main-canvas {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
Loading