From 06a0eebd83afbfcb4c4649813a1a168b92253560 Mon Sep 17 00:00:00 2001 From: sageTheDM Date: Tue, 24 Sep 2024 09:54:45 +0200 Subject: [PATCH 1/2] Fixed the responsive design? --- app/styles/responsive.css | 19 ++++++++++++------- 1 file changed, 12 insertions(+), 7 deletions(-) diff --git a/app/styles/responsive.css b/app/styles/responsive.css index 08818cf..3921092 100644 --- a/app/styles/responsive.css +++ b/app/styles/responsive.css @@ -3,13 +3,14 @@ * { margin: 0; padding: 0; + border-radius: none; } /* Header styles */ header { flex-direction: column; align-items: center; - position: relative; + position: fixed; top: 0; left: 0; margin-top: 0px; @@ -25,7 +26,7 @@ width: 100vw; overflow: scroll; margin: 0; - padding: 0; + padding: 7em 0 0 0 ; } header li { @@ -48,8 +49,8 @@ /* Left panel styles */ .left-panel { - display: none; /* Initially hidden */ - min-width: 90%; /* Takes full width when visible */ + display: hidden; /* Initially hidden */ + min-width: 100%; /* Takes full width when visible */ margin: 0; } @@ -59,8 +60,9 @@ /* Conversation container styles */ .conversation-container { - width: 90%; - height: 90%; + min-width: 100%; + height: 100%; + border-radius: 0; } .conversation-container.collapsed { @@ -68,10 +70,13 @@ padding: 0; border: none; overflow: hidden; + display: hidden; } .conversation-container.expanded { - width: 100%; + min-width: 100%; + margin-left: 0; + border-radius: none; } /* Grid styles */ From 4984f285d6be5dc4038ca73e2ba329283c0e671f Mon Sep 17 00:00:00 2001 From: sageTheDM Date: Tue, 24 Sep 2024 10:08:42 +0200 Subject: [PATCH 2/2] Fixed install.sh --- py/install.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/py/install.sh b/py/install.sh index 1fbdcba..65cc5d2 100644 --- a/py/install.sh +++ b/py/install.sh @@ -1,4 +1,3 @@ python -m venv venv source venv/bin/activate pip install -r requirements.txt -deactivate \ No newline at end of file