style: Add CSS for wider buttons in Streamlit app

This commit is contained in:
Bobby Abellana (aider) 2025-02-11 16:09:55 -08:00
parent fcf07e0b39
commit 4d4ace24b0

View File

@ -29,6 +29,16 @@ st.set_page_config(
layout="wide"
)
# Custom CSS for wider buttons
st.markdown("""
<style>
.stButton > button {
width: 100%;
min-width: 200px;
}
</style>
""", unsafe_allow_html=True)
# Setup logging
setup_logging()
warnings.filterwarnings('ignore', category=UserWarning, module='openpyxl.reader.workbook')