From 3aaf5ad4f395b6cf6d55a062e2a22eedefdaa35c Mon Sep 17 00:00:00 2001 From: BhushanSah Date: Mon, 6 Jul 2026 20:30:57 +0000 Subject: [PATCH 1/2] Fixed the footer and made the button centered in contributors list --- app/config/contributors.yaml | 3 +++ app/static/css/base.css | 16 ++++++++++++++++ app/static/css/contributors.css | 1 - app/templates/base.html | 20 +++++++++++++++----- app/templates/main/contributors.html | 6 +++--- 5 files changed, 37 insertions(+), 9 deletions(-) diff --git a/app/config/contributors.yaml b/app/config/contributors.yaml index d26cdd366..2a47673ca 100755 --- a/app/config/contributors.yaml +++ b/app/config/contributors.yaml @@ -59,4 +59,7 @@ contributors: - name: "Oluwagbayi Makinde" username: "makindeo" year: 2024 + - name: "Bhushan Sah " + username: "sahb" + year: 2029 \ No newline at end of file diff --git a/app/static/css/base.css b/app/static/css/base.css index 916fb4db9..8257acf2b 100755 --- a/app/static/css/base.css +++ b/app/static/css/base.css @@ -191,3 +191,19 @@ a { font-size:1.2em; z-index:999; } + +.site-footer { + position: fixed; + left: 280px; + right: 0; + bottom: 0; + + background-color: #e9ebec; + color: #1e2433; + + padding: 8px 15px; + line-height: 1.4; + box-sizing: border-box; + z-index: 101; +} + diff --git a/app/static/css/contributors.css b/app/static/css/contributors.css index 0fe0601b0..2f54c122e 100755 --- a/app/static/css/contributors.css +++ b/app/static/css/contributors.css @@ -3,7 +3,6 @@ color: #ffffff; padding: 7px 30px; margin-top: 100px; - margin-right: 250px; } .container { top: -75px; diff --git a/app/templates/base.html b/app/templates/base.html index 4d6c2a79f..4b9825368 100755 --- a/app/templates/base.html +++ b/app/templates/base.html @@ -66,10 +66,20 @@
{% block footer %} - -{% endblock %} + +{% endblock %} {% endblock %} diff --git a/app/templates/main/contributors.html b/app/templates/main/contributors.html index ffdfe4391..af33209dc 100755 --- a/app/templates/main/contributors.html +++ b/app/templates/main/contributors.html @@ -23,9 +23,9 @@

Contributors

{% endfor %} -
- -
+
+
+
From 092e5eb112c0705f0cc6265823e18fde63fd1ca0 Mon Sep 17 00:00:00 2001 From: BhushanSah Date: Mon, 6 Jul 2026 23:10:31 +0000 Subject: [PATCH 2/2] Fixed the footer when sidebar collapses --- app/static/css/base.css | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/app/static/css/base.css b/app/static/css/base.css index 8257acf2b..81f010ff4 100755 --- a/app/static/css/base.css +++ b/app/static/css/base.css @@ -205,5 +205,16 @@ a { line-height: 1.4; box-sizing: border-box; z-index: 101; + +} + +.sidebar-push { + padding-bottom: 85px; } +@media (max-width: 991px) { + .site-footer { + left: 0; + width: 100%; + } +}