hysts HF staff commited on
Commit
90e7099
Β·
1 Parent(s): 7e70c9e

Fix CSS issue

Browse files
Files changed (2) hide show
  1. app.py +4 -4
  2. style.css +1 -1
app.py CHANGED
@@ -733,14 +733,14 @@ with gr.Blocks(css_paths="style.css", theme=gr.themes.Glass()) as demo:
733
  gr.HTML(TITLE)
734
  introduction_text = gr.Markdown(INTRODUCTION_TEXT_JA, elem_classes="markdown-text")
735
 
736
- with gr.Tabs(elem_classes="tab-buttons") as tabs:
737
- with gr.Tab("πŸ… LLM Benchmark", elem_id="llm-benchmark-tab-table", id=0):
738
  demo_leaderboard.render()
739
 
740
- with gr.Tab("πŸ“ About", elem_id="llm-benchmark-tab-table", id=2):
741
  llm_benchmarks_text = gr.Markdown(LLM_BENCHMARKS_TEXT_JA, elem_classes="markdown-text")
742
 
743
- with gr.Tab("πŸš€ Submit here! ", elem_id="llm-benchmark-tab-table", id=3):
744
  demo_submission.render()
745
 
746
  with gr.Row():
 
733
  gr.HTML(TITLE)
734
  introduction_text = gr.Markdown(INTRODUCTION_TEXT_JA, elem_classes="markdown-text")
735
 
736
+ with gr.Tabs() as tabs:
737
+ with gr.Tab("πŸ… LLM Benchmark", elem_id="llm-benchmark-tab-table"):
738
  demo_leaderboard.render()
739
 
740
+ with gr.Tab("πŸ“ About", elem_id="llm-benchmark-tab-about"):
741
  llm_benchmarks_text = gr.Markdown(LLM_BENCHMARKS_TEXT_JA, elem_classes="markdown-text")
742
 
743
+ with gr.Tab("πŸš€ Submit here! ", elem_id="llm-benchmark-tab-submit"):
744
  demo_submission.render()
745
 
746
  with gr.Row():
style.css CHANGED
@@ -44,7 +44,7 @@ table th:first-child {
44
  white-space: nowrap;
45
  }
46
 
47
- .tab-buttons button {
48
  font-size: 20px;
49
  }
50
 
 
44
  white-space: nowrap;
45
  }
46
 
47
+ #llm-benchmark-tab-table-button, #llm-benchmark-tab-about-button, #llm-benchmark-tab-submit-button {
48
  font-size: 20px;
49
  }
50