forked from React-Group/interstellar_ai
Merge branch 'main' of interstellardevelopment.org:React-Group/interstellar_ai
This commit is contained in:
commit
3970c6a4f3
2 changed files with 12 additions and 8 deletions
|
@ -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 */
|
||||
|
|
|
@ -1,4 +1,3 @@
|
|||
python -m venv venv
|
||||
source venv/bin/activate
|
||||
pip install -r requirements.txt
|
||||
deactivate
|
Loading…
Reference in a new issue