Update app.py
Browse files
app.py
CHANGED
@@ -17,8 +17,9 @@ footer {visibility: hidden;}
|
|
17 |
|
18 |
</style>
|
19 |
"""
|
20 |
-
|
21 |
-
|
|
|
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
|