Spaces:
Runtime error
Runtime error
LOUIS SANNA
commited on
Commit
•
1558216
1
Parent(s):
d9ddc47
feat(style): quick wins
Browse files- app.py +1 -0
- chroma_db/5e9a66b6-12a7-48c3-9eb0-2277bce39a9f/length.bin +1 -1
- style.css +17 -5
app.py
CHANGED
@@ -338,6 +338,7 @@ with gr.Blocks(title="❓ Q&A", css="style.css", theme=theme) as demo:
|
|
338 |
scale=1,
|
339 |
lines=1,
|
340 |
interactive=True,
|
|
|
341 |
)
|
342 |
# submit_button = gr.Button(">",scale = 1,elem_id = "submit-button")
|
343 |
|
|
|
338 |
scale=1,
|
339 |
lines=1,
|
340 |
interactive=True,
|
341 |
+
max_lines=2
|
342 |
)
|
343 |
# submit_button = gr.Button(">",scale = 1,elem_id = "submit-button")
|
344 |
|
chroma_db/5e9a66b6-12a7-48c3-9eb0-2277bce39a9f/length.bin
CHANGED
@@ -1,3 +1,3 @@
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
-
oid sha256:
|
3 |
size 4000
|
|
|
1 |
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:3a1699c0f831604cacd0c938b8e3b8fa3918dcaec6fadd6765160de647c2ffc1
|
3 |
size 4000
|
style.css
CHANGED
@@ -139,18 +139,18 @@ label.selected {
|
|
139 |
}
|
140 |
|
141 |
div#chatbot-row {
|
142 |
-
height: calc(100vh -
|
143 |
-
max-height:
|
144 |
}
|
145 |
|
146 |
div#chatbot {
|
147 |
height: calc(100vh - 220px) !important;
|
148 |
-
max-height:
|
149 |
}
|
150 |
|
151 |
.max-height {
|
152 |
-
height: calc(100vh -
|
153 |
-
max-height:
|
154 |
overflow-y: auto;
|
155 |
}
|
156 |
}
|
@@ -214,3 +214,15 @@ body.dark .card-footer span {
|
|
214 |
color: #dc2626 !important;
|
215 |
margin-right: 1px;
|
216 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
139 |
}
|
140 |
|
141 |
div#chatbot-row {
|
142 |
+
height: calc(100vh - 110px) !important;
|
143 |
+
max-height: 2000px;
|
144 |
}
|
145 |
|
146 |
div#chatbot {
|
147 |
height: calc(100vh - 220px) !important;
|
148 |
+
max-height: 2000px;
|
149 |
}
|
150 |
|
151 |
.max-height {
|
152 |
+
height: calc(100vh - 110px) !important;
|
153 |
+
max-height: 2000px;
|
154 |
overflow-y: auto;
|
155 |
}
|
156 |
}
|
|
|
214 |
color: #dc2626 !important;
|
215 |
margin-right: 1px;
|
216 |
}
|
217 |
+
|
218 |
+
.message-buttons-bot {
|
219 |
+
bottom: 0px !important;
|
220 |
+
}
|
221 |
+
|
222 |
+
.message-buttons-panel {
|
223 |
+
bottom: 0px !important;
|
224 |
+
}
|
225 |
+
|
226 |
+
.chatbot {
|
227 |
+
user-select: text;
|
228 |
+
}
|