From 1dc422ad0512fabd11c7a7329590dd2a531bbc53 Mon Sep 17 00:00:00 2001 From: Prabhu Bisht Date: Sat, 20 Jan 2024 22:46:20 +0530 Subject: [PATCH 1/2] Fixes #291 : Hamburger menu and footer padding in contributors page --- assets/css_files/contributor.css | 2 +- assets/html_files/contributor.html | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/assets/css_files/contributor.css b/assets/css_files/contributor.css index ce123446..c6503c9c 100644 --- a/assets/css_files/contributor.css +++ b/assets/css_files/contributor.css @@ -63,7 +63,7 @@ body { } -@media (min-width: 1000px){ +@media (min-width: 1400px){ .footer{ position: fixed; width: 100%; diff --git a/assets/html_files/contributor.html b/assets/html_files/contributor.html index f4739b33..c0455fbc 100644 --- a/assets/html_files/contributor.html +++ b/assets/html_files/contributor.html @@ -8,6 +8,7 @@ + Contributors - Beautiify From c097834982bc2ab547297dfa5f0f952ff99dc7e7 Mon Sep 17 00:00:00 2001 From: Prabhu Bisht Date: Thu, 15 Feb 2024 16:13:06 +0530 Subject: [PATCH 2/2] Fixes #575 Search bar on mobile screen responsive now --- style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/style.css b/style.css index de65d778..a020e7ec 100644 --- a/style.css +++ b/style.css @@ -702,8 +702,7 @@ footer p a { #searchBar { text-align: center; border-radius: 14px; - margin: 2rem 4rem 0; - padding: 2rem; + margin: 4rem 4rem 0; color: white; width: 100%; } @@ -720,7 +719,7 @@ footer p a { background: transparent; border: 0; color: rgb(57, 4, 100); - margin-left: 1rem; + margin: 1rem; background-color: rgba(224, 202, 245, 0.743); padding: .7rem; width: 8rem; @@ -746,6 +745,7 @@ footer p a { width: 40rem; transition: all linear .2s; font-weight: 600; + padding-right: 0 !important; } #searchBar input:hover { @@ -822,7 +822,7 @@ footer p a { @media (max-width: 650px) { #searchBar input { - width: 60%; + width: 100%; font-size: 1.5rem; } }