Update app.py
Browse files
app.py
CHANGED
@@ -132,9 +132,9 @@ custom_css = """
|
|
132 |
margin-top: 20px;
|
133 |
}
|
134 |
.container {
|
135 |
-
max-width:
|
136 |
margin: 0 auto;
|
137 |
-
padding:
|
138 |
}
|
139 |
.title {
|
140 |
color: #003366;
|
@@ -164,7 +164,7 @@ custom_css = """
|
|
164 |
box-shadow: none !important;
|
165 |
}
|
166 |
.chatbot .message-content {
|
167 |
-
padding: 2px
|
168 |
margin-bottom: 5px; /* Space between messages */
|
169 |
max-width: 60%; /* Restrict width to make it more compact */
|
170 |
word-wrap: break-word; /* Ensure text wraps properly */
|
@@ -172,7 +172,7 @@ custom_css = """
|
|
172 |
}
|
173 |
.chatbot .message-bubble {
|
174 |
background-color: #FFFFFF; /* Ensure background is white */
|
175 |
-
border-radius:
|
176 |
box-sizing: border-box; /* Ensure padding is included in width */
|
177 |
display: inline-block; /* Align the bubble content properly */
|
178 |
margin: 2px 0; /* Reduce margin to minimize bubble size */
|
|
|
132 |
margin-top: 20px;
|
133 |
}
|
134 |
.container {
|
135 |
+
max-width: 1200px;
|
136 |
margin: 0 auto;
|
137 |
+
padding: 10px;
|
138 |
}
|
139 |
.title {
|
140 |
color: #003366;
|
|
|
164 |
box-shadow: none !important;
|
165 |
}
|
166 |
.chatbot .message-content {
|
167 |
+
padding: 2px 2px; /* Reduced padding to make text bubbles smaller */
|
168 |
margin-bottom: 5px; /* Space between messages */
|
169 |
max-width: 60%; /* Restrict width to make it more compact */
|
170 |
word-wrap: break-word; /* Ensure text wraps properly */
|
|
|
172 |
}
|
173 |
.chatbot .message-bubble {
|
174 |
background-color: #FFFFFF; /* Ensure background is white */
|
175 |
+
border-radius: 2px; /* Smaller rounded corners */
|
176 |
box-sizing: border-box; /* Ensure padding is included in width */
|
177 |
display: inline-block; /* Align the bubble content properly */
|
178 |
margin: 2px 0; /* Reduce margin to minimize bubble size */
|