From df58211724147c1dd7678a02c31b7508f20851db Mon Sep 17 00:00:00 2001 From: "Bobby Abellana (aider)" Date: Tue, 11 Feb 2025 16:15:21 -0800 Subject: [PATCH] style: Enhance CSS for text areas and error section buttons --- src/streamlit_app.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/streamlit_app.py b/src/streamlit_app.py index eb41756..515715d 100644 --- a/src/streamlit_app.py +++ b/src/streamlit_app.py @@ -36,6 +36,16 @@ st.markdown(""" width: 100%; min-width: 200px; } + /* Make text areas wider */ + .stTextArea textarea { + width: 100%; + min-width: 200px; + } + /* Make error section buttons full width */ + [data-testid="stHorizontalBlock"] .stButton button { + width: 100%; + min-width: 200px; + } """, unsafe_allow_html=True)