soojeongcrystal commited on
Commit
b394915
·
verified ·
1 Parent(s): 4edbb90

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -89,10 +89,9 @@ if 'selected_concern' in st.session_state:
89
  # 고민과 조언 요청 사이에 공간 추가
90
  st.write("")
91
 
92
- # 조언 제출 섹션
93
  if 'selected_concern' in st.session_state:
94
  advice = st.text_area(f"### 고민에 대한 조언을 입력해주세요:", key="advice_input", value="", height=100) # text_area의 높이를 조정합니다.
95
- submit_advice_button = st.button("조언 제출하기", style={"font-size": "18px"}) # 버튼의 글자 크기를 조정합니다.
96
 
97
  if submit_advice_button and advice.strip():
98
  record_advice(st.session_state['experience'], st.session_state['selected_concern'], advice)
 
89
  # 고민과 조언 요청 사이에 공간 추가
90
  st.write("")
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)