Update style.css
Browse files
style.css
CHANGED
@@ -190,26 +190,37 @@ label.selected{
|
|
190 |
|
191 |
div#sources-textbox{
|
192 |
height:calc(100vh - 190px) !important;
|
193 |
-
overflow-y: auto;
|
|
|
|
|
|
|
|
|
|
|
194 |
}
|
195 |
|
196 |
div#chatbot-row{
|
197 |
-
height:calc(100vh -
|
198 |
}
|
199 |
|
200 |
div#chatbot{
|
201 |
-
height:calc(100vh -
|
202 |
}
|
203 |
|
204 |
.max-height{
|
205 |
-
height:calc(100vh -
|
206 |
overflow-y: auto;
|
207 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
208 |
}
|
209 |
|
210 |
footer {
|
211 |
visibility: hidden;
|
212 |
-
display:none;
|
213 |
}
|
214 |
|
215 |
|
@@ -270,4 +281,18 @@ body.dark .card-footer span {
|
|
270 |
margin-right:1px;
|
271 |
}
|
272 |
|
273 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
190 |
|
191 |
div#sources-textbox{
|
192 |
height:calc(100vh - 190px) !important;
|
193 |
+
overflow-y: auto !important;
|
194 |
+
}
|
195 |
+
|
196 |
+
div#tab-config{
|
197 |
+
height:calc(100vh - 190px) !important;
|
198 |
+
overflow-y: auto !important;
|
199 |
}
|
200 |
|
201 |
div#chatbot-row{
|
202 |
+
height:calc(100vh - 90px) !important;
|
203 |
}
|
204 |
|
205 |
div#chatbot{
|
206 |
+
height:calc(100vh - 170px) !important;
|
207 |
}
|
208 |
|
209 |
.max-height{
|
210 |
+
height:calc(100vh - 90px) !important;
|
211 |
overflow-y: auto;
|
212 |
}
|
213 |
+
|
214 |
+
/* .tabitem:nth-child(n+3) {
|
215 |
+
padding-top:30px;
|
216 |
+
padding-left:40px;
|
217 |
+
padding-right:40px;
|
218 |
+
} */
|
219 |
}
|
220 |
|
221 |
footer {
|
222 |
visibility: hidden;
|
223 |
+
display:none !important;
|
224 |
}
|
225 |
|
226 |
|
|
|
281 |
margin-right:1px;
|
282 |
}
|
283 |
|
284 |
+
.tabitem{
|
285 |
+
border:none !important;
|
286 |
+
}
|
287 |
+
|
288 |
+
.other-tabs > div{
|
289 |
+
padding-left:40px;
|
290 |
+
padding-right:40px;
|
291 |
+
padding-top:10px;
|
292 |
+
}
|
293 |
+
|
294 |
+
.gallery-item > div{
|
295 |
+
white-space: normal !important; /* Allow the text to wrap */
|
296 |
+
word-break: break-word !important; /* Break words to prevent overflow */
|
297 |
+
overflow-wrap: break-word !important; /* Break long words if necessary */
|
298 |
+
}
|