Update app.py
Browse files
app.py
CHANGED
@@ -14,16 +14,19 @@ st.set_page_config(page_title="OntoLearner Benchmark", layout="wide")
|
|
14 |
st.markdown(
|
15 |
"""
|
16 |
<style>
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
padding: 0 !important;
|
23 |
-
}
|
24 |
-
.stDataFrame {
|
25 |
-
height: 100vh !important;
|
26 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
27 |
</style>
|
28 |
""",
|
29 |
unsafe_allow_html=True
|
|
|
14 |
st.markdown(
|
15 |
"""
|
16 |
<style>
|
17 |
+
html, body, .main {
|
18 |
+
height: 100%;
|
19 |
+
width: 100%;
|
20 |
+
margin: 0;
|
21 |
+
padding: 0;
|
|
|
|
|
|
|
|
|
22 |
}
|
23 |
+
|
24 |
+
.block-container {
|
25 |
+
padding: 1rem;
|
26 |
+
margin: 0;
|
27 |
+
height: 100%;
|
28 |
+
width: 100%;
|
29 |
+
}
|
30 |
</style>
|
31 |
""",
|
32 |
unsafe_allow_html=True
|