79116064

Date: 2024-10-23 00:18:20
Score: 1
Natty:
Report link

Simple solution with inline CSS (demo):

enter image description here

import streamlit as st

st.markdown(
    """
    <style>
    [data-testid="stMarkdownContainer"] p {
        font-size: 50px;
    }
    </style>
    """,
    unsafe_allow_html=True,
)


st.text_input("Enter something here")
Reasons:
  • Probably link only (1):
  • Low length (0.5):
  • Has code block (-0.5):
Posted by: Eduardo