Update app.py
Browse files
app.py
CHANGED
|
@@ -137,12 +137,31 @@ def apply_custom_css():
|
|
| 137 |
text-align: center;
|
| 138 |
}
|
| 139 |
|
|
|
|
|
|
|
| 140 |
div[data-testid="stBottomBlockContainer"] {
|
| 141 |
background-color: #111827 !important;
|
| 142 |
}
|
| 143 |
|
| 144 |
div[data-testid="stChatInput"]{
|
| 145 |
background-color: #111827 !important;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 146 |
}
|
| 147 |
|
| 148 |
.sidebar-section {
|
|
|
|
| 137 |
text-align: center;
|
| 138 |
}
|
| 139 |
|
| 140 |
+
|
| 141 |
+
/*
|
| 142 |
div[data-testid="stBottomBlockContainer"] {
|
| 143 |
background-color: #111827 !important;
|
| 144 |
}
|
| 145 |
|
| 146 |
div[data-testid="stChatInput"]{
|
| 147 |
background-color: #111827 !important;
|
| 148 |
+
} */
|
| 149 |
+
|
| 150 |
+
/* Override the bottom chat input container */
|
| 151 |
+
div.stChatFloatingInputContainer {
|
| 152 |
+
background-color: #111827 !important;
|
| 153 |
+
}
|
| 154 |
+
|
| 155 |
+
/* Override the inner chat input box */
|
| 156 |
+
div.stChatInputContainer {
|
| 157 |
+
background-color: #111827 !important;
|
| 158 |
+
|
| 159 |
+
}
|
| 160 |
+
|
| 161 |
+
/* Optional: Override text area background */
|
| 162 |
+
textarea {
|
| 163 |
+
background-color: #111827 !important;
|
| 164 |
+
color: white !important;
|
| 165 |
}
|
| 166 |
|
| 167 |
.sidebar-section {
|