style: Add CSS for wider buttons in Streamlit app
This commit is contained in:
parent
fcf07e0b39
commit
4d4ace24b0
@ -29,6 +29,16 @@ st.set_page_config(
|
|||||||
layout="wide"
|
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
|
||||||
setup_logging()
|
setup_logging()
|
||||||
warnings.filterwarnings('ignore', category=UserWarning, module='openpyxl.reader.workbook')
|
warnings.filterwarnings('ignore', category=UserWarning, module='openpyxl.reader.workbook')
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user