Spaces:
Build error
Build error
Update app.py
Browse files
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():
|