Unizomby commited on
Commit
a457238
·
verified ·
1 Parent(s): 8387c54

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
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 and Clear buttons only
24
  custom_css = """
25
- .gradio-button.primary {
26
  background: linear-gradient(45deg, #8B5CF6, #A855F7) !important;
27
  border: none !important;
28
  color: white !important;
29
  }
30
 
31
- .gradio-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);
 
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);