Update Tailwind CSS CDN links to latest version 3.4.17
Browse files- Replace Tailwind CSS CDN script and stylesheet links with newer version
- Adjust script and stylesheet references to match version 3.4.17
- Maintain existing HTML structure and styling approach
app.py
CHANGED
|
@@ -213,7 +213,9 @@ def generate_results_html(results):
|
|
| 213 |
|
| 214 |
html_content = f"""
|
| 215 |
|
| 216 |
-
<
|
|
|
|
|
|
|
| 217 |
<div class="container mx-auto mt-4">
|
| 218 |
<div class="grid xl:grid-cols-3 md:grid-cols-2 grid-cols-1 gap-4">
|
| 219 |
<!-- Tile 1: SwinV2/detect -->
|
|
|
|
| 213 |
|
| 214 |
html_content = f"""
|
| 215 |
|
| 216 |
+
<script src="https://cdn.jsdelivr.net/npm/tailwindcss@3.4.17/lib/index.min.js"></script>
|
| 217 |
+
<link href="https://cdn.jsdelivr.net/npm/tailwindcss@3.4.17/base.min.css" rel="stylesheet">
|
| 218 |
+
|
| 219 |
<div class="container mx-auto mt-4">
|
| 220 |
<div class="grid xl:grid-cols-3 md:grid-cols-2 grid-cols-1 gap-4">
|
| 221 |
<!-- Tile 1: SwinV2/detect -->
|