Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -603,6 +603,10 @@ def show_temperature_graph(data):
|
|
603 |
</div>
|
604 |
''', unsafe_allow_html=True)
|
605 |
|
|
|
|
|
|
|
|
|
606 |
|
607 |
# 우리집 날씨 정보로 돌아가기 버튼 추가
|
608 |
st.button("우리집 날씨 정보로 돌아가기", on_click=lambda: st.session_state.update({'current_section': 'weather'}))
|
|
|
603 |
</div>
|
604 |
''', unsafe_allow_html=True)
|
605 |
|
606 |
+
# 스크롤 텍스트 위에 버튼이 오도록 마진 추가
|
607 |
+
st.markdown('''
|
608 |
+
<div style="margin-bottom: 10px;">
|
609 |
+
''', unsafe_allow_html=True)
|
610 |
|
611 |
# 우리집 날씨 정보로 돌아가기 버튼 추가
|
612 |
st.button("우리집 날씨 정보로 돌아가기", on_click=lambda: st.session_state.update({'current_section': 'weather'}))
|