Update layout
Browse files
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,
|
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'])
|