Revert Tailwind CSS CDN link to version 2.2.19
Browse files- Replace version 3.4.17 Tailwind CSS CDN links with version 2.2.19
- Remove unnecessary script tag
- Maintain existing styling and layout structure
app.py
CHANGED
|
@@ -213,8 +213,8 @@ def generate_results_html(results):
|
|
| 213 |
|
| 214 |
html_content = f"""
|
| 215 |
|
| 216 |
-
|
| 217 |
-
<link href="https://
|
| 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">
|
|
|
|
| 213 |
|
| 214 |
html_content = f"""
|
| 215 |
|
| 216 |
+
|
| 217 |
+
<link href="https://unpkg.com/tailwindcss@2.2.19/dist/tailwind.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">
|