fixes
Browse files- app.py +1 -1
- src/display/css_html_js.py +7 -2
app.py
CHANGED
|
@@ -88,7 +88,7 @@ def init_leaderboard(dataframe):
|
|
| 88 |
|
| 89 |
demo = gr.Blocks(css=custom_css)
|
| 90 |
with demo:
|
| 91 |
-
gr.HTML(TITLE)
|
| 92 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
| 93 |
|
| 94 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
|
|
|
| 88 |
|
| 89 |
demo = gr.Blocks(css=custom_css)
|
| 90 |
with demo:
|
| 91 |
+
gr.HTML(TITLE, elem_classes="abl_header")
|
| 92 |
gr.Markdown(INTRODUCTION_TEXT, elem_classes="markdown-text")
|
| 93 |
|
| 94 |
with gr.Tabs(elem_classes="tab-buttons") as tabs:
|
src/display/css_html_js.py
CHANGED
|
@@ -106,12 +106,17 @@ custom_css = """
|
|
| 106 |
color: white !important;
|
| 107 |
|
| 108 |
}
|
| 109 |
-
|
|
|
|
|
|
|
| 110 |
.abl_header_image{
|
| 111 |
margin:0px auto 0px auto;
|
| 112 |
width:50%;
|
| 113 |
display:block;
|
| 114 |
-
|
|
|
|
|
|
|
|
|
|
| 115 |
}
|
| 116 |
|
| 117 |
|
|
|
|
| 106 |
color: white !important;
|
| 107 |
|
| 108 |
}
|
| 109 |
+
.abl_header{
|
| 110 |
+
margin:0px auto 0px auto;
|
| 111 |
+
}
|
| 112 |
.abl_header_image{
|
| 113 |
margin:0px auto 0px auto;
|
| 114 |
width:50%;
|
| 115 |
display:block;
|
| 116 |
+
}
|
| 117 |
+
|
| 118 |
+
.tabs{
|
| 119 |
+
gap:0px !important;
|
| 120 |
}
|
| 121 |
|
| 122 |
|