Update app.py
Browse filesstyles.css fixed to style.css
app.py
CHANGED
|
@@ -62,7 +62,7 @@ def predict_text(image):
|
|
| 62 |
|
| 63 |
# Gradio UI
|
| 64 |
# Load custom CSS from an external file
|
| 65 |
-
with open("
|
| 66 |
custom_css = f.read()
|
| 67 |
|
| 68 |
# Create a custom Gradio theme using the external CSS
|
|
|
|
| 62 |
|
| 63 |
# Gradio UI
|
| 64 |
# Load custom CSS from an external file
|
| 65 |
+
with open("style.css", "r") as f:
|
| 66 |
custom_css = f.read()
|
| 67 |
|
| 68 |
# Create a custom Gradio theme using the external CSS
|