Merge branch 'main' of interstellardevelopment.org:React-Group/interstellar_ai

This commit is contained in:
Patrick_Pluto 2024-09-24 10:36:51 +02:00
commit 3970c6a4f3
2 changed files with 12 additions and 8 deletions

View file

@ -3,13 +3,14 @@
* { * {
margin: 0; margin: 0;
padding: 0; padding: 0;
border-radius: none;
} }
/* Header styles */ /* Header styles */
header { header {
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
position: relative; position: fixed;
top: 0; top: 0;
left: 0; left: 0;
margin-top: 0px; margin-top: 0px;
@ -25,7 +26,7 @@
width: 100vw; width: 100vw;
overflow: scroll; overflow: scroll;
margin: 0; margin: 0;
padding: 0; padding: 7em 0 0 0 ;
} }
header li { header li {
@ -48,8 +49,8 @@
/* Left panel styles */ /* Left panel styles */
.left-panel { .left-panel {
display: none; /* Initially hidden */ display: hidden; /* Initially hidden */
min-width: 90%; /* Takes full width when visible */ min-width: 100%; /* Takes full width when visible */
margin: 0; margin: 0;
} }
@ -59,8 +60,9 @@
/* Conversation container styles */ /* Conversation container styles */
.conversation-container { .conversation-container {
width: 90%; min-width: 100%;
height: 90%; height: 100%;
border-radius: 0;
} }
.conversation-container.collapsed { .conversation-container.collapsed {
@ -68,10 +70,13 @@
padding: 0; padding: 0;
border: none; border: none;
overflow: hidden; overflow: hidden;
display: hidden;
} }
.conversation-container.expanded { .conversation-container.expanded {
width: 100%; min-width: 100%;
margin-left: 0;
border-radius: none;
} }
/* Grid styles */ /* Grid styles */

View file

@ -1,4 +1,3 @@
python -m venv venv python -m venv venv
source venv/bin/activate source venv/bin/activate
pip install -r requirements.txt pip install -r requirements.txt
deactivate