Update app.py
Browse files
app.py
CHANGED
@@ -117,9 +117,9 @@ custom_css = """
|
|
117 |
#logo-img {
|
118 |
display: block;
|
119 |
margin: 0 auto;
|
120 |
-
width:
|
121 |
height: auto;
|
122 |
-
padding-bottom:
|
123 |
}
|
124 |
#disclaimer-footer {
|
125 |
width: 100%;
|
@@ -134,11 +134,11 @@ custom_css = """
|
|
134 |
.container {
|
135 |
max-width: 1200px;
|
136 |
margin: 0 auto;
|
137 |
-
padding:
|
138 |
}
|
139 |
.title {
|
140 |
color: #003366;
|
141 |
-
margin-bottom:
|
142 |
text-align: center; /* Center the title */
|
143 |
}
|
144 |
.chatbot {
|
@@ -164,7 +164,7 @@ custom_css = """
|
|
164 |
box-shadow: none !important;
|
165 |
}
|
166 |
.chatbot .message-content {
|
167 |
-
padding: 5px
|
168 |
margin-bottom: 8px;
|
169 |
max-width: 70%;
|
170 |
word-wrap: break-word;
|
|
|
117 |
#logo-img {
|
118 |
display: block;
|
119 |
margin: 0 auto;
|
120 |
+
width: 160px;
|
121 |
height: auto;
|
122 |
+
padding-bottom: 10px; /* Space below logo */
|
123 |
}
|
124 |
#disclaimer-footer {
|
125 |
width: 100%;
|
|
|
134 |
.container {
|
135 |
max-width: 1200px;
|
136 |
margin: 0 auto;
|
137 |
+
padding: 10px;
|
138 |
}
|
139 |
.title {
|
140 |
color: #003366;
|
141 |
+
margin-bottom: 5px;
|
142 |
text-align: center; /* Center the title */
|
143 |
}
|
144 |
.chatbot {
|
|
|
164 |
box-shadow: none !important;
|
165 |
}
|
166 |
.chatbot .message-content {
|
167 |
+
padding: 5px 5px;
|
168 |
margin-bottom: 8px;
|
169 |
max-width: 70%;
|
170 |
word-wrap: break-word;
|