Spaces:
Runtime error
Runtime error
Commit
·
05a04da
1
Parent(s):
5fc7a11
Update app.py
Browse files
app.py
CHANGED
|
@@ -2,6 +2,18 @@ import streamlit as st
|
|
| 2 |
from screen.screen_scan import screen_scan_main
|
| 3 |
|
| 4 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
def main():
|
| 6 |
|
| 7 |
screen_scan_main()
|
|
|
|
| 2 |
from screen.screen_scan import screen_scan_main
|
| 3 |
|
| 4 |
|
| 5 |
+
st.markdown("""
|
| 6 |
+
<style>
|
| 7 |
+
.block-container {
|
| 8 |
+
padding-top: 0rem;
|
| 9 |
+
padding-bottom: 0rem;
|
| 10 |
+
padding-left: 1rem;
|
| 11 |
+
padding-right: 1rem;
|
| 12 |
+
}
|
| 13 |
+
</style>
|
| 14 |
+
""", unsafe_allow_html=True)
|
| 15 |
+
|
| 16 |
+
|
| 17 |
def main():
|
| 18 |
|
| 19 |
screen_scan_main()
|