Jhsmit commited on
Commit
ef75e98
·
1 Parent(s): 2513940

fix: use HTML for dark mode

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -239,8 +239,9 @@ def Page():
239
  )
240
 
241
  if load_result.not_called:
242
- solara.Markdown(
243
- "Drag and drop an alphafold3 result .zip file to get started. You can download an example file [here](https://www.gstatic.com/alphafoldserver/examplefold_pdb_8aw3/examplefold_pdb_8aw3.zip)."
 
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)