Spaces:
Sleeping
Sleeping
style
Browse files
style.css
CHANGED
@@ -16,10 +16,23 @@ h1 {
|
|
16 |
padding-top: 1.5rem;
|
17 |
}
|
18 |
|
19 |
-
/*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
.chatbot {
|
21 |
-
|
22 |
-
|
23 |
}
|
24 |
|
25 |
.chatbot-container {
|
@@ -27,10 +40,6 @@ h1 {
|
|
27 |
overflow: visible !important;
|
28 |
}
|
29 |
|
30 |
-
.message-wrap {
|
31 |
-
overflow: visible !important;
|
32 |
-
}
|
33 |
-
|
34 |
/* Fix input area */
|
35 |
.input-row {
|
36 |
position: sticky !important;
|
@@ -43,7 +52,7 @@ h1 {
|
|
43 |
/* Ensure chat container doesn't jump */
|
44 |
#chatbot {
|
45 |
min-height: 400px;
|
46 |
-
max-height:
|
47 |
overflow-y: auto;
|
48 |
scroll-behavior: smooth;
|
49 |
}
|
|
|
16 |
padding-top: 1.5rem;
|
17 |
}
|
18 |
|
19 |
+
/* Adjust message box size */
|
20 |
+
.message-textbox {
|
21 |
+
height: 80px !important; /* Reduced from default */
|
22 |
+
min-height: 80px !important;
|
23 |
+
max-height: 80px !important;
|
24 |
+
}
|
25 |
+
|
26 |
+
/* Ensure the textbox doesn't overlap with content */
|
27 |
+
.message-wrap {
|
28 |
+
margin-bottom: 10px !important;
|
29 |
+
padding-bottom: 10px !important;
|
30 |
+
}
|
31 |
+
|
32 |
+
/* Adjust the chat container to give more space to messages */
|
33 |
.chatbot {
|
34 |
+
height: 500px !important; /* Slightly reduced to accommodate smaller input box */
|
35 |
+
overflow-y: auto !important;
|
36 |
}
|
37 |
|
38 |
.chatbot-container {
|
|
|
40 |
overflow: visible !important;
|
41 |
}
|
42 |
|
|
|
|
|
|
|
|
|
43 |
/* Fix input area */
|
44 |
.input-row {
|
45 |
position: sticky !important;
|
|
|
52 |
/* Ensure chat container doesn't jump */
|
53 |
#chatbot {
|
54 |
min-height: 400px;
|
55 |
+
max-height: 500px; /* Adjusted to match chatbot height */
|
56 |
overflow-y: auto;
|
57 |
scroll-behavior: smooth;
|
58 |
}
|