Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -225,6 +225,15 @@ html, body {
|
|
225 |
width: 100vw; /* Ensure it takes full viewport width */
|
226 |
}
|
227 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
228 |
body {
|
229 |
/* Apply the background image properties from your outer div */
|
230 |
background-image: url('https://res.cloudinary.com/dgj1gzq0l/image/upload/v1747821491/new_bg_bz1uqj.svg') !important;
|
@@ -293,7 +302,7 @@ label, .gr-checkbox-label span { /* Target labels and checkbox labels */
|
|
293 |
color: #E6E6FA !important; /* Keeping text color consistent with your main header */
|
294 |
font-weight: 600 !important; /* Semibold, consistent with your main header */
|
295 |
margin-top: 0.5rem !important; /* Add some top margin for better spacing */
|
296 |
-
margin-bottom: 0.
|
297 |
font-family: 'Sprintura', sans-serif !important;
|
298 |
}
|
299 |
|
|
|
225 |
width: 100vw; /* Ensure it takes full viewport width */
|
226 |
}
|
227 |
|
228 |
+
.gradio-app {
|
229 |
+
max-width: unset !important; /* Remove any default max-width */
|
230 |
+
width: 100vw !important; /* Force it to take full viewport width */
|
231 |
+
margin: 0 !important; /* Remove any default auto margins */
|
232 |
+
padding: 0 !important; /* Remove any default padding */
|
233 |
+
box-shadow: none !important; /* Remove any default shadows that might create a border effect */
|
234 |
+
border-radius: 0 !important; /* Remove any default border radius */
|
235 |
+
}
|
236 |
+
|
237 |
body {
|
238 |
/* Apply the background image properties from your outer div */
|
239 |
background-image: url('https://res.cloudinary.com/dgj1gzq0l/image/upload/v1747821491/new_bg_bz1uqj.svg') !important;
|
|
|
302 |
color: #E6E6FA !important; /* Keeping text color consistent with your main header */
|
303 |
font-weight: 600 !important; /* Semibold, consistent with your main header */
|
304 |
margin-top: 0.5rem !important; /* Add some top margin for better spacing */
|
305 |
+
margin-bottom: 0.1rem !important; /* Add some bottom margin for better spacing */
|
306 |
font-family: 'Sprintura', sans-serif !important;
|
307 |
}
|
308 |
|