DontPlanToEnd
commited on
Commit
•
685d2ab
1
Parent(s):
b9eb745
Update app.py
Browse files
app.py
CHANGED
@@ -25,6 +25,15 @@ custom_css = """
|
|
25 |
.gradio-container .prose {
|
26 |
font-family: 'Segoe UI', Arial, sans-serif !important;
|
27 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
28 |
"""
|
29 |
|
30 |
# Define the columns for the different leaderboards
|
@@ -88,10 +97,10 @@ with GraInter:
|
|
88 |
gr.HTML("""
|
89 |
<div style="display: flex; justify-content: space-between; align-items: flex-start; width: 100%;">
|
90 |
<div>
|
91 |
-
<a href="mailto:[email protected]" target="_blank"
|
92 |
</div>
|
93 |
<div>
|
94 |
-
<a href="https://ko-fi.com/dontplantoend" target="_blank"
|
95 |
</div>
|
96 |
</div>
|
97 |
<div style="display: flex; flex-direction: column; align-items: center; margin-top: 20px;">
|
|
|
25 |
.gradio-container .prose {
|
26 |
font-family: 'Segoe UI', Arial, sans-serif !important;
|
27 |
}
|
28 |
+
/* Keep table links without underline */
|
29 |
+
.gradio-container table a,
|
30 |
+
.gradio-container .dataframe a {
|
31 |
+
text-decoration: none !important;
|
32 |
+
}
|
33 |
+
/* Add default underline to specific links */
|
34 |
+
.default-underline {
|
35 |
+
text-decoration: underline !important;
|
36 |
+
}
|
37 |
"""
|
38 |
|
39 |
# Define the columns for the different leaderboards
|
|
|
97 |
gr.HTML("""
|
98 |
<div style="display: flex; justify-content: space-between; align-items: flex-start; width: 100%;">
|
99 |
<div>
|
100 |
+
<a href="mailto:[email protected]" target="_blank" class="default-underline">Contact/Model Requests</a> (or create a HF discussion)
|
101 |
</div>
|
102 |
<div>
|
103 |
+
<a href="https://ko-fi.com/dontplantoend" target="_blank" class="default-underline">Help me test 400B+ models</a>
|
104 |
</div>
|
105 |
</div>
|
106 |
<div style="display: flex; flex-direction: column; align-items: center; margin-top: 20px;">
|