Jack Monas commited on
Commit
2e5a1c6
·
1 Parent(s): 2dfca59
Files changed (1) hide show
  1. app.py +8 -3
app.py CHANGED
@@ -126,9 +126,14 @@ def main():
126
  def display_faq(question, answer):
127
  st.markdown(
128
  f"""
129
- <div style="padding: 12px; margin-bottom: 12px; background-color: #f8f8f8; border-radius: 8px; border: 1px solid #ddd;">
130
- <p style="font-weight: bold; margin: 0 0 4px 0;">{question}</p>
131
- <p style="margin: 0;">{answer}</p>
 
 
 
 
 
132
  </div>
133
  """,
134
  unsafe_allow_html=True
 
126
  def display_faq(question, answer):
127
  st.markdown(
128
  f"""
129
+ <div style="
130
+ padding: 12px;
131
+ margin-bottom: 12px;
132
+ background-color: #0d1b2a;
133
+ border-radius: 8px;
134
+ border: 1px solid #0d1b2a;">
135
+ <p style="font-weight: bold; margin: 0 0 4px 0; color: #ffffff;">{question}</p>
136
+ <p style="margin: 0; color: #ffffff;">{answer}</p>
137
  </div>
138
  """,
139
  unsafe_allow_html=True