Update src/streamlit_app.py
Browse files- src/streamlit_app.py +7 -8
src/streamlit_app.py
CHANGED
|
@@ -812,25 +812,24 @@ elif len(st.session_state.batch_results) > 0:
|
|
| 812 |
"""
|
| 813 |
<style>
|
| 814 |
div[data-testid="stTabs"] > div > div {
|
| 815 |
-
padding-bottom: 5px
|
| 816 |
-
margin-top:
|
| 817 |
-
background-color: #E8E8E8
|
| 818 |
}
|
| 819 |
.stTextInput, .stNumberInput, .stSelectbox, .stTextArea, .stDateInput {
|
| 820 |
-
margin-bottom:
|
| 821 |
-
padding-bottom: 5px
|
| 822 |
}
|
| 823 |
div[data-testid="stTabs"] {
|
| 824 |
-
background-color: #E8E8E8
|
| 825 |
}
|
| 826 |
h3:first-of-type {
|
| 827 |
-
margin-top:
|
| 828 |
}
|
| 829 |
</style>
|
| 830 |
""",
|
| 831 |
unsafe_allow_html=True,
|
| 832 |
)
|
| 833 |
-
|
| 834 |
# ---------- Invoice Details ----------
|
| 835 |
with tabs[0]:
|
| 836 |
with st.container():
|
|
|
|
| 812 |
"""
|
| 813 |
<style>
|
| 814 |
div[data-testid="stTabs"] > div > div {
|
| 815 |
+
padding-bottom: 5px;
|
| 816 |
+
margin-top: 0;
|
| 817 |
+
background-color: #E8E8E8;
|
| 818 |
}
|
| 819 |
.stTextInput, .stNumberInput, .stSelectbox, .stTextArea, .stDateInput {
|
| 820 |
+
margin-bottom: 5px;
|
| 821 |
+
padding-bottom: 5px;
|
| 822 |
}
|
| 823 |
div[data-testid="stTabs"] {
|
| 824 |
+
background-color: #E8E8E8;
|
| 825 |
}
|
| 826 |
h3:first-of-type {
|
| 827 |
+
margin-top: 10px;
|
| 828 |
}
|
| 829 |
</style>
|
| 830 |
""",
|
| 831 |
unsafe_allow_html=True,
|
| 832 |
)
|
|
|
|
| 833 |
# ---------- Invoice Details ----------
|
| 834 |
with tabs[0]:
|
| 835 |
with st.container():
|