Reduce sidebar
Browse files- pages/App.py +7 -4
pages/App.py
CHANGED
|
@@ -933,12 +933,15 @@ def raz():
|
|
| 933 |
##----------- Initializations ---------------------------------------------------------------------
|
| 934 |
#print("PID : ", os.getpid())
|
| 935 |
st.set_page_config(page_title='OCR Comparator', layout ="wide")
|
| 936 |
-
st.markdown(
|
| 937 |
<style>
|
| 938 |
-
section[data-testid="stSidebar"]
|
| 939 |
-
|
|
|
|
| 940 |
</style>
|
| 941 |
-
|
|
|
|
|
|
|
| 942 |
st.title("OCR solutions comparator")
|
| 943 |
st.markdown("##### *EasyOCR, PPOCR, MMOCR, Tesseract*")
|
| 944 |
#st.markdown("#### PID : " + str(os.getpid()))
|
|
|
|
| 933 |
##----------- Initializations ---------------------------------------------------------------------
|
| 934 |
#print("PID : ", os.getpid())
|
| 935 |
st.set_page_config(page_title='OCR Comparator', layout ="wide")
|
| 936 |
+
st.markdown("""
|
| 937 |
<style>
|
| 938 |
+
section[data-testid="stSidebar"] {
|
| 939 |
+
width: 5rem;
|
| 940 |
+
}
|
| 941 |
</style>
|
| 942 |
+
""",unsafe_allow_html=True)
|
| 943 |
+
|
| 944 |
+
|
| 945 |
st.title("OCR solutions comparator")
|
| 946 |
st.markdown("##### *EasyOCR, PPOCR, MMOCR, Tesseract*")
|
| 947 |
#st.markdown("#### PID : " + str(os.getpid()))
|