Spaces:
Runtime error
Runtime error
LOUIS SANNA
commited on
Commit
·
2874cff
1
Parent(s):
5db9283
fix(style): prevent infinite height bug
Browse files
style.css
CHANGED
@@ -195,14 +195,17 @@ label.selected{
|
|
195 |
|
196 |
div#chatbot-row{
|
197 |
height:calc(100vh - 120px) !important;
|
|
|
198 |
}
|
199 |
|
200 |
div#chatbot{
|
201 |
height:calc(100vh - 220px) !important;
|
|
|
202 |
}
|
203 |
|
204 |
.max-height{
|
205 |
height:calc(100vh - 120px) !important;
|
|
|
206 |
overflow-y: auto;
|
207 |
}
|
208 |
}
|
|
|
195 |
|
196 |
div#chatbot-row{
|
197 |
height:calc(100vh - 120px) !important;
|
198 |
+
max-height: 1200px;
|
199 |
}
|
200 |
|
201 |
div#chatbot{
|
202 |
height:calc(100vh - 220px) !important;
|
203 |
+
max-height: 1200px;
|
204 |
}
|
205 |
|
206 |
.max-height{
|
207 |
height:calc(100vh - 120px) !important;
|
208 |
+
max-height: 1200px;
|
209 |
overflow-y: auto;
|
210 |
}
|
211 |
}
|