atz21 commited on
Commit
4e60204
·
verified ·
1 Parent(s): a9f5a6e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -207,12 +207,18 @@ def generate_test_with_processing(total_marks, topic_name, level):
207
  yield result
208
  # --- Gradio Interface ---
209
  # --- Gradio Interface ---
 
210
  with gr.Blocks(theme=gr.themes.Soft(), css="""
211
  #output-area {
212
  background: white !important;
213
  padding: 20px;
214
  border-radius: 8px;
215
  border: 1px solid #ddd;
 
 
 
 
 
216
  }
217
  """) as demo:
218
 
 
207
  yield result
208
  # --- Gradio Interface ---
209
  # --- Gradio Interface ---
210
+ # --- Gradio Interface ---
211
  with gr.Blocks(theme=gr.themes.Soft(), css="""
212
  #output-area {
213
  background: white !important;
214
  padding: 20px;
215
  border-radius: 8px;
216
  border: 1px solid #ddd;
217
+ color: black !important;
218
+ }
219
+
220
+ #output-area * {
221
+ color: black !important;
222
  }
223
  """) as demo:
224