Commit 2cc46267 authored by Abdullah Yassin's avatar Abdullah Yassin
Browse files

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

parent dbac61df
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -528,3 +528,9 @@ em.placeholder {
  opacity: unset !important;
  background-color: unset !important;
}

.dialog-off-canvas-main-canvas {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
+10 −4
Original line number Diff line number Diff line
@@ -650,3 +650,9 @@ em.placeholder {
  background-color: unset!important;
  opacity: unset!important;
}

.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
@@ -191,7 +191,7 @@

{% if page.footer %}
  {% block footer %}
    <footer class="site-footer text-center text-lg-start bg-light mt-5" role="contentinfo">
    <footer class="site-footer text-center text-lg-start bg-light mt-auto" role="contentinfo">
        <div class="{{ container }}">
          {{ page.footer }}
        </div>
+7 −1
Original line number Diff line number Diff line
@@ -528,3 +528,9 @@ em.placeholder {
  opacity: unset !important;
  background-color: unset !important;
}

.dialog-off-canvas-main-canvas {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
+9 −3
Original line number Diff line number Diff line
@@ -650,3 +650,9 @@ em.placeholder {
  background-color: unset!important;
  opacity: unset!important;
}

.dialog-off-canvas-main-canvas {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
 No newline at end of file
Loading