soojeongcrystal commited on
Commit
0f4b1a1
·
verified ·
1 Parent(s): 6c57520

Update app.py

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