Spaces:
Build error
Build error
Update streamlit_apps_config.py
Browse files- streamlit_apps_config.py +1 -1
streamlit_apps_config.py
CHANGED
@@ -100,7 +100,7 @@ STYLE_CONFIG_OLD = f"""
|
|
100 |
</style>
|
101 |
"""
|
102 |
|
103 |
-
with open('./
|
104 |
STYLE_CONFIG_NEW = f.read()
|
105 |
STYLE_CONFIG = STYLE_CONFIG_OLD + '<style>{}</style>'.format(STYLE_CONFIG_NEW)
|
106 |
|
|
|
100 |
</style>
|
101 |
"""
|
102 |
|
103 |
+
with open('./style.css') as f:
|
104 |
STYLE_CONFIG_NEW = f.read()
|
105 |
STYLE_CONFIG = STYLE_CONFIG_OLD + '<style>{}</style>'.format(STYLE_CONFIG_NEW)
|
106 |
|