From f8a013af1e29117ccbb18b73536384ead920f1d8 Mon Sep 17 00:00:00 2001 From: "grish.ayvazyan" Date: Tue, 27 Jun 2023 11:45:46 +0400 Subject: [PATCH] Make footer stick at the bottom of page --- docs/css/app.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/css/app.css b/docs/css/app.css index 88751e5a2..2b332e5d0 100644 --- a/docs/css/app.css +++ b/docs/css/app.css @@ -6,6 +6,12 @@ font-style: normal; } +body { + position: relative; + min-height: 100vh; + padding-bottom: 3em; +} + code { color: inherit; background-color: #f0f0f0; @@ -465,6 +471,9 @@ section.whos-using .user { } footer { + position: absolute; + bottom: 0; + width: 100%; background-color: #f8f8f8; font-size: .9em; text-align: center;