soojeongcrystal commited on
Commit
84b39ac
·
verified ·
1 Parent(s): b394915

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -91,7 +91,8 @@ if 'selected_concern' in st.session_state:
91
 
92
  if 'selected_concern' in st.session_state:
93
  advice = st.text_area(f"### 고민에 대한 조언을 입력해주세요:", key="advice_input", value="", height=100) # text_area의 높이를 조정합니다.
94
- submit_advice_button = st.button("조언 제출하기", style="font-size: 18px;")
 
95
 
96
  if submit_advice_button and advice.strip():
97
  record_advice(st.session_state['experience'], st.session_state['selected_concern'], advice)
 
91
 
92
  if 'selected_concern' in st.session_state:
93
  advice = st.text_area(f"### 고민에 대한 조언을 입력해주세요:", key="advice_input", value="", height=100) # text_area의 높이를 조정합니다.
94
+ st.write("<style>div[data-testid='stButton']>button {font-size: 18px;}</style>", unsafe_allow_html=True) # 버튼의 글자 크기를 조정합니다.
95
+ submit_advice_button = st.button("조언 제출하기")
96
 
97
  if submit_advice_button and advice.strip():
98
  record_advice(st.session_state['experience'], st.session_state['selected_concern'], advice)