#!/usr/bin/env python
# -*- coding: utf-8 -*-
# @Project : Python.
# @File : 994_自定义style
# @Time : 2022/10/17 上午11:45
# @Author : yuanjie
# @WeChat : meutils
# @Software : PyCharm
# @Description :
import streamlit as st
from streamlit.components.v1 import html
st.button('button背景色?换一个吧')
st.text_area('del', placeholder='Label多余?删了就好')
st.radio('想放大label字号, 修改字体吗?', ['想', '很想'])
st.markdown('''''', unsafe_allow_html=True)
js_delete = '''window.parent.document.querySelector("#root > div:nth-child(1) > div > div > div > div > section > div > div:nth-child(1) > div > div:nth-child(2) > div > label").remove()'''
html(f'''''',
width=0,
height=0)