From a3799e0e2d47eb3641a3a4d219a152286b41d47e Mon Sep 17 00:00:00 2001 From: SteveRosam Date: Mon, 10 Jul 2023 12:36:48 +0100 Subject: [PATCH 1/3] Keep footer at the bottom of the browser window For pages with not much content. --- docs/stylesheets/extra.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 7e65fe24..9ed16784 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -360,3 +360,8 @@ button.header-btn-inner:hover { -webkit-transform-origin: 0 0; transform-origin: 0 0; } + +.md-container{ + height: calc(100vh - 72px) !important; +} + From 9f4b1fc4350a24b8b4d160829cabcb0cb5dc0407 Mon Sep 17 00:00:00 2001 From: SteveRosam Date: Mon, 10 Jul 2023 13:26:49 +0100 Subject: [PATCH 2/3] test scroll fix --- docs/stylesheets/extra.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index 9ed16784..d00f49cf 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -365,3 +365,9 @@ button.header-btn-inner:hover { height: calc(100vh - 72px) !important; } + +@media screen and (min-width: 76.25em) +.md-sidebar { + height: auto; !important +} + From d13f49f60d6c67617364b8a6309af22ad3b660db Mon Sep 17 00:00:00 2001 From: SteveRosam Date: Mon, 10 Jul 2023 15:50:52 +0100 Subject: [PATCH 3/3] revert test css --- docs/stylesheets/extra.css | 6 ------ 1 file changed, 6 deletions(-) diff --git a/docs/stylesheets/extra.css b/docs/stylesheets/extra.css index d00f49cf..9ed16784 100644 --- a/docs/stylesheets/extra.css +++ b/docs/stylesheets/extra.css @@ -365,9 +365,3 @@ button.header-btn-inner:hover { height: calc(100vh - 72px) !important; } - -@media screen and (min-width: 76.25em) -.md-sidebar { - height: auto; !important -} -