heysho commited on
Commit
c7c6e0b
1 Parent(s): e908a7e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -14
app.py CHANGED
@@ -45,20 +45,9 @@ def init_chain():
45
  def main():
46
  init_page()
47
  # Style adjustments (optional, remove if not needed)
48
- st.markdown(
49
- """
50
- <style>
51
- /* Custom style adjustments */
52
- .st-emotion-cache-15ecox0 { display: none !important; }
53
- @media (max-width: 50.5rem) {
54
- .st-emotion-cache-13ln4jf {
55
- max-width: calc(0rem + 100vw);
56
- }
57
- }
58
- </style>
59
- """,
60
- unsafe_allow_html=True,
61
- )
62
  chain = init_chain()
63
  if chain:
64
  text = st.text_area("ここに日本語のテキストを入力してください:", key="text")
 
45
  def main():
46
  init_page()
47
  # Style adjustments (optional, remove if not needed)
48
+ st.markdown("""<style>.st-emotion-cache-15ecox0 { display: none !important; }
49
+ @media (max-width: 50.5rem) {.st-emotion-cache-13ln4jf {max-width: calc(0rem + 100vw);}}
50
+ </style>""",unsafe_allow_html=True,)
 
 
 
 
 
 
 
 
 
 
 
51
  chain = init_chain()
52
  if chain:
53
  text = st.text_area("ここに日本語のテキストを入力してください:", key="text")