Adjust grid layout for results display
Browse files- Modify grid column configuration to use 5 columns for xl and md screen sizes
- Reduce grid gap from 4 to 1 for tighter result card spacing
- Maintain responsive design approach with Tailwind CSS grid system
app.py
CHANGED
@@ -217,7 +217,7 @@ def generate_results_html(results):
|
|
217 |
<link href="https://unpkg.com/[email protected]/dist/tailwind.min.css" rel="stylesheet">
|
218 |
|
219 |
<div class="container mx-auto mt-4">
|
220 |
-
<div class="grid xl:grid-cols-
|
221 |
<!-- Tile 1: SwinV2/detect -->
|
222 |
<div
|
223 |
class="group flex flex-col bg-neutral-300 rounded-sm p-4 m-1 border border-neutral-800 shadow-xs transition hover:shadow-lg dark:shadow-gray-700/25">
|
|
|
217 |
<link href="https://unpkg.com/[email protected]/dist/tailwind.min.css" rel="stylesheet">
|
218 |
|
219 |
<div class="container mx-auto mt-4">
|
220 |
+
<div class="grid xl:grid-cols-5 md:grid-cols-5 grid-cols-1 gap-1">
|
221 |
<!-- Tile 1: SwinV2/detect -->
|
222 |
<div
|
223 |
class="group flex flex-col bg-neutral-300 rounded-sm p-4 m-1 border border-neutral-800 shadow-xs transition hover:shadow-lg dark:shadow-gray-700/25">
|