Elfsong commited on
Commit
dc8dc95
·
1 Parent(s): d728674

Update layout

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -11,7 +11,7 @@ tab_problem, tab_model = st.tabs(["Problems", "Models"])
11
  with tab_problem:
12
  for problem in ds:
13
  with st.container(border=True):
14
- id_col, title_col, difficulty_col, dp_col = st.columns([1,3,1,1])
15
  id_col.write(problem['problem_id'])
16
  title_col.write(problem['title'])
17
  difficulty_col.write(problem['difficulty'])
 
11
  with tab_problem:
12
  for problem in ds:
13
  with st.container(border=True):
14
+ id_col, title_col, difficulty_col, dp_col = st.columns([1,5,1,1])
15
  id_col.write(problem['problem_id'])
16
  title_col.write(problem['title'])
17
  difficulty_col.write(problem['difficulty'])