Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
|
@@ -299,7 +299,7 @@ def create_interface():
|
|
| 299 |
# Read CSS file
|
| 300 |
custom_css = ""
|
| 301 |
try:
|
| 302 |
-
with open("
|
| 303 |
custom_css = css_file.read()
|
| 304 |
except FileNotFoundError:
|
| 305 |
logger.warning("style.css file not found, using default styling")
|
|
|
|
| 299 |
# Read CSS file
|
| 300 |
custom_css = ""
|
| 301 |
try:
|
| 302 |
+
with open("styles.css", "r", encoding="utf-8") as css_file:
|
| 303 |
custom_css = css_file.read()
|
| 304 |
except FileNotFoundError:
|
| 305 |
logger.warning("style.css file not found, using default styling")
|