mgyigit commited on
Commit
81ba650
·
1 Parent(s): 73304c6

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +19 -2
app.py CHANGED
@@ -189,13 +189,30 @@ with gr.Blocks(theme=gr.themes.Ocean()) as demo:
189
 
190
  gr.HTML("""
191
  <div style="display: flex; gap: 10px; margin-bottom: 15px;">
 
192
  <a href="https://arxiv.org/abs/2302.07868" target="_blank" style="text-decoration: none;">
193
- <div style="display: inline-block; background-color: #b31b1b; color: white; padding: 5px 10px; border-radius: 5px; font-size: 14px;">
 
 
 
 
 
 
 
194
  <span style="font-weight: bold;">arXiv</span> 2302.07868
195
  </div>
196
  </a>
 
 
197
  <a href="https://github.com/HUBioDataLab/DrugGEN" target="_blank" style="text-decoration: none;">
198
- <div style="display: inline-block; background-color: #24292e; color: white; padding: 5px 10px; border-radius: 5px; font-size: 14px;">
 
 
 
 
 
 
 
199
  <span style="font-weight: bold;">GitHub</span> Repository
200
  </div>
201
  </a>
 
189
 
190
  gr.HTML("""
191
  <div style="display: flex; gap: 10px; margin-bottom: 15px;">
192
+ <!-- arXiv badge -->
193
  <a href="https://arxiv.org/abs/2302.07868" target="_blank" style="text-decoration: none;">
194
+ <div style="
195
+ display: inline-block;
196
+ background-color: #b31b1b;
197
+ color: #ffffff !important; /* Force white text */
198
+ padding: 5px 10px;
199
+ border-radius: 5px;
200
+ font-size: 14px;"
201
+ >
202
  <span style="font-weight: bold;">arXiv</span> 2302.07868
203
  </div>
204
  </a>
205
+
206
+ <!-- GitHub badge -->
207
  <a href="https://github.com/HUBioDataLab/DrugGEN" target="_blank" style="text-decoration: none;">
208
+ <div style="
209
+ display: inline-block;
210
+ background-color: #24292e;
211
+ color: #ffffff !important; /* Force white text */
212
+ padding: 5px 10px;
213
+ border-radius: 5px;
214
+ font-size: 14px;"
215
+ >
216
  <span style="font-weight: bold;">GitHub</span> Repository
217
  </div>
218
  </a>