From 994087829d1c6688a613d4d5ce37492defb21fee Mon Sep 17 00:00:00 2001 From: Andrew Date: Wed, 12 Mar 2025 22:31:20 +0000 Subject: [PATCH] [frontend]: Fix filters / search bar overlapping on mobile --- frontend/src/App.jsx | 45 +++++++++++++++-------------- frontend/src/components/Sidebar.jsx | 2 +- 2 files changed, 24 insertions(+), 23 deletions(-) diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 2165beb..962d221 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -379,30 +379,31 @@ function App() { path="/" element={
- {loading && }
- handleSearchChange(e)} - placeholder="Search..." + {loading && } +
-
- + > + handleSearchChange(e)} + placeholder="Search..." + style={{ + width: "250px", fontSize: "16px", + top: "6vh", marginTop: "5vh", + padding: "10px", background: "rgba(255, 255, 255, 0.9)", color: "black", + borderRadius: "10px", overflow: "hidden" + }} + /> +