style: Enhance CSS for text areas and error section buttons

This commit is contained in:
Bobby Abellana (aider) 2025-02-11 16:15:21 -08:00
parent 4d4ace24b0
commit df58211724

View File

@ -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;
}
</style>
""", unsafe_allow_html=True)