Spaces:
Runtime error
Runtime error
update style
Browse files
app.css
CHANGED
@@ -33,7 +33,7 @@
|
|
33 |
border-right: 1px solid rgba(0, 0, 0, 0.15);
|
34 |
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
|
35 |
border-radius: 10px 0 10px 0;
|
36 |
-
padding:
|
37 |
}
|
38 |
|
39 |
.probelm-example-another {
|
@@ -62,9 +62,14 @@
|
|
62 |
right: 0;
|
63 |
border-left: 1px solid rgba(0, 0, 0, 0.15);
|
64 |
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
|
|
|
|
|
65 |
border-radius: 0 10px 0 0px;
|
66 |
padding: 4px 12px;
|
67 |
cursor: pointer;
|
|
|
|
|
|
|
68 |
}
|
69 |
|
70 |
.right {
|
|
|
33 |
border-right: 1px solid rgba(0, 0, 0, 0.15);
|
34 |
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
|
35 |
border-radius: 10px 0 10px 0;
|
36 |
+
padding: 6px 12px;
|
37 |
}
|
38 |
|
39 |
.probelm-example-another {
|
|
|
62 |
right: 0;
|
63 |
border-left: 1px solid rgba(0, 0, 0, 0.15);
|
64 |
border-bottom: 1px solid rgba(0, 0, 0, 0.15);
|
65 |
+
border-top: 0;
|
66 |
+
border-right: 0;
|
67 |
border-radius: 0 10px 0 0px;
|
68 |
padding: 4px 12px;
|
69 |
cursor: pointer;
|
70 |
+
font-size: 12px;
|
71 |
+
background: transparent;
|
72 |
+
min-width: auto;
|
73 |
}
|
74 |
|
75 |
.right {
|
app.py
CHANGED
@@ -746,7 +746,7 @@ def update_example_problem():
|
|
746 |
problem_example_text_display = (
|
747 |
problem_example_text[:100] + "..." if len(problem_example_text) > 100 else problem_example_text
|
748 |
)
|
749 |
-
return
|
750 |
|
751 |
|
752 |
def clear():
|
|
|
746 |
problem_example_text_display = (
|
747 |
problem_example_text[:100] + "..." if len(problem_example_text) > 100 else problem_example_text
|
748 |
)
|
749 |
+
return problem_example_text_display, problem_example_text
|
750 |
|
751 |
|
752 |
def clear():
|