Spaces:
Running
Running
fix: use HTML for dark mode
Browse files
app.py
CHANGED
@@ -239,8 +239,9 @@ def Page():
|
|
239 |
)
|
240 |
|
241 |
if load_result.not_called:
|
242 |
-
solara.
|
243 |
-
"
|
|
|
244 |
)
|
245 |
elif load_result.pending:
|
246 |
solara.ProgressLinear(load_result.pending)
|
|
|
239 |
)
|
240 |
|
241 |
if load_result.not_called:
|
242 |
+
solara.HTML(
|
243 |
+
tag="p",
|
244 |
+
unsafe_innerHTML='Drag and drop an alphafold3 result .zip file to get started. You can download an example file <a href="https://www.gstatic.com/alphafoldserver/examplefold_pdb_8aw3/examplefold_pdb_8aw3.zip">here</a>.',
|
245 |
)
|
246 |
elif load_result.pending:
|
247 |
solara.ProgressLinear(load_result.pending)
|