Update app.py
Browse files
app.py
CHANGED
|
@@ -1284,6 +1284,11 @@ def create_gradio_app():
|
|
| 1284 |
box-shadow: 0 8px 16px rgba(46, 204, 113, 0.3);
|
| 1285 |
margin: 10px 0;
|
| 1286 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1287 |
"""
|
| 1288 |
|
| 1289 |
with gr.Blocks(css=css, title="📱 Instagram Generator", theme=gr.themes.Glass()) as app:
|
|
@@ -1308,7 +1313,7 @@ def create_gradio_app():
|
|
| 1308 |
with gr.Tab("🎯 Caption Generator"):
|
| 1309 |
with gr.Row():
|
| 1310 |
# Left Column - Controls
|
| 1311 |
-
with gr.Column(scale=2, elem_classes=["feature-card"]):
|
| 1312 |
gr.Markdown("### 🖼️ Upload Images")
|
| 1313 |
gr.Markdown("*SambaNova AI vision analysis with quality scoring*")
|
| 1314 |
|
|
|
|
| 1284 |
box-shadow: 0 8px 16px rgba(46, 204, 113, 0.3);
|
| 1285 |
margin: 10px 0;
|
| 1286 |
}
|
| 1287 |
+
|
| 1288 |
+
.feature-card.config-card {
|
| 1289 |
+
overflow: visible;
|
| 1290 |
+
z-index: 10;
|
| 1291 |
+
}
|
| 1292 |
"""
|
| 1293 |
|
| 1294 |
with gr.Blocks(css=css, title="📱 Instagram Generator", theme=gr.themes.Glass()) as app:
|
|
|
|
| 1313 |
with gr.Tab("🎯 Caption Generator"):
|
| 1314 |
with gr.Row():
|
| 1315 |
# Left Column - Controls
|
| 1316 |
+
with gr.Column(scale=2, elem_classes=["feature-card", "config-card"]):
|
| 1317 |
gr.Markdown("### 🖼️ Upload Images")
|
| 1318 |
gr.Markdown("*SambaNova AI vision analysis with quality scoring*")
|
| 1319 |
|