From 4d4ace24b03b79518ed676a01eceabed90838128 Mon Sep 17 00:00:00 2001 From: "Bobby Abellana (aider)" Date: Tue, 11 Feb 2025 16:09:55 -0800 Subject: [PATCH] style: Add CSS for wider buttons in Streamlit app --- src/streamlit_app.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/streamlit_app.py b/src/streamlit_app.py index dc638a0..eb41756 100644 --- a/src/streamlit_app.py +++ b/src/streamlit_app.py @@ -29,6 +29,16 @@ st.set_page_config( layout="wide" ) +# Custom CSS for wider buttons +st.markdown(""" + +""", unsafe_allow_html=True) + # Setup logging setup_logging() warnings.filterwarnings('ignore', category=UserWarning, module='openpyxl.reader.workbook')