Geek7 commited on
Commit
dd53ec6
·
1 Parent(s): 2f09fce

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -2
app.py CHANGED
@@ -17,8 +17,9 @@ footer {visibility: hidden;}
17
 
18
  </style>
19
  """
20
-
21
- st.markdown(hide_streamlit_style, unsafe_allow_html=True)
 
22
 
23
  class YouTubeDownloader:
24
  @staticmethod
 
17
 
18
  </style>
19
  """
20
+ with open('./bg.css') as f:
21
+ css = f.read()
22
+ st.markdown(f'<style>{css}</style>',hide_streamlit_style, unsafe_allow_html=True)
23
 
24
  class YouTubeDownloader:
25
  @staticmethod