Update app.py
Browse files
app.py
CHANGED
@@ -177,8 +177,11 @@ def process_images(uploaded_file):
|
|
177 |
|
178 |
css = """
|
179 |
body { font-family: Arial, sans-serif; }
|
180 |
-
.input-container {
|
181 |
-
|
|
|
|
|
|
|
182 |
"""
|
183 |
|
184 |
interface = gr.Interface(
|
|
|
177 |
|
178 |
css = """
|
179 |
body { font-family: Arial, sans-serif; }
|
180 |
+
.input-container, .output-container {
|
181 |
+
width: 95%;
|
182 |
+
margin: 10px auto 20px; /* centers the containers and adds vertical spacing */
|
183 |
+
display: block; /* ensures containers are treated as block elements */
|
184 |
+
}
|
185 |
"""
|
186 |
|
187 |
interface = gr.Interface(
|