Daimon commited on
Commit
d44d8ad
·
1 Parent(s): 377de90

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
app.py CHANGED
@@ -88,6 +88,11 @@ with st.form("my_form"):
88
  st.write("Please enter the source text, source language and target language.")
89
 
90
 
 
 
 
 
 
91
 
92
  # ---- CONTACT ----
93
  with st.container():
 
88
  st.write("Please enter the source text, source language and target language.")
89
 
90
 
91
+ def local_css(file_name):
92
+ with open(file_name) as f:
93
+ st.markdown(f"<style>{f.read()}</style>", unsafe_allow_html=True)
94
+
95
+ local_css("style/style.css")
96
 
97
  # ---- CONTACT ----
98
  with st.container():