Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -26,6 +26,13 @@ footer {visibility: hidden;}
|
|
| 26 |
|
| 27 |
</style> """
|
| 28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 29 |
|
| 30 |
api = os.environ['api']
|
| 31 |
|
|
|
|
| 26 |
|
| 27 |
</style> """
|
| 28 |
|
| 29 |
+
def local_css(file_name):
|
| 30 |
+
with open(file_name) as f:
|
| 31 |
+
st.markdown(f'<style>{f.read()}</style>', unsafe_allow_html=True)
|
| 32 |
+
|
| 33 |
+
# Use the function with your CSS file
|
| 34 |
+
local_css("style.css")
|
| 35 |
+
|
| 36 |
|
| 37 |
api = os.environ['api']
|
| 38 |
|