Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=
|
| 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)
|