The-Adnan-Syed commited on
Commit
1a27ea7
·
verified ·
1 Parent(s): 711fceb

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +7 -0
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