Upload app.py
Browse files
app.py
CHANGED
@@ -20,15 +20,15 @@ def chatbot_response(message):
|
|
20 |
response = query_engine.query(message)
|
21 |
return str(response)
|
22 |
|
23 |
-
# Custom CSS for purple Submit
|
24 |
custom_css = """
|
25 |
-
|
26 |
background: linear-gradient(45deg, #8B5CF6, #A855F7) !important;
|
27 |
border: none !important;
|
28 |
color: white !important;
|
29 |
}
|
30 |
|
31 |
-
|
32 |
background: linear-gradient(45deg, #7C3AED, #9333EA) !important;
|
33 |
transform: translateY(-2px);
|
34 |
box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
|
|
|
20 |
response = query_engine.query(message)
|
21 |
return str(response)
|
22 |
|
23 |
+
# Custom CSS for purple Submit button
|
24 |
custom_css = """
|
25 |
+
button.primary {
|
26 |
background: linear-gradient(45deg, #8B5CF6, #A855F7) !important;
|
27 |
border: none !important;
|
28 |
color: white !important;
|
29 |
}
|
30 |
|
31 |
+
button.primary:hover {
|
32 |
background: linear-gradient(45deg, #7C3AED, #9333EA) !important;
|
33 |
transform: translateY(-2px);
|
34 |
box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
|