Spaces:
Running
Running
Commit ·
c2b8e1c
1
Parent(s): 1e15fb5
hideTopBar
Browse files- .streamlit/config.toml +5 -1
- app.py +5 -0
.streamlit/config.toml
CHANGED
|
@@ -25,4 +25,8 @@ gatherUsageStats = false
|
|
| 25 |
# - Open the browser
|
| 26 |
|
| 27 |
# Default: whatever value is set in server.port.
|
| 28 |
-
serverPort = 8501
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 25 |
# - Open the browser
|
| 26 |
|
| 27 |
# Default: whatever value is set in server.port.
|
| 28 |
+
serverPort = 8501
|
| 29 |
+
|
| 30 |
+
# .streamlit/config.toml
|
| 31 |
+
[ui]
|
| 32 |
+
hideTopBar = true
|
app.py
CHANGED
|
@@ -57,6 +57,11 @@ st.markdown(
|
|
| 57 |
padding-left: 0rem;
|
| 58 |
padding-right: 0rem;
|
| 59 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 60 |
</style>
|
| 61 |
""",
|
| 62 |
unsafe_allow_html=True,
|
|
|
|
| 57 |
padding-left: 0rem;
|
| 58 |
padding-right: 0rem;
|
| 59 |
}
|
| 60 |
+
|
| 61 |
+
.awesome-marker i {
|
| 62 |
+
font-size: 11px;
|
| 63 |
+
margin-top: 8px;
|
| 64 |
+
}
|
| 65 |
</style>
|
| 66 |
""",
|
| 67 |
unsafe_allow_html=True,
|