Change Input Text Font Size

@alex180500 Though not an ideal solution, you can use css to change these sizes

st.text_area("Write some text")
st.text_input("Write some text")
st.number_input("Write some number")

# Add css to make text bigger
st.markdown(
    """
    <style>
    textarea {
        font-size: 3rem !important;
    }
    input {
        font-size: 3rem !important;
    }
    </style>
    """,
    unsafe_allow_html=True,
)
1 Like