Spaces:
Build error
Build error
Update templates/combined_summary.html
Browse files
templates/combined_summary.html
CHANGED
|
@@ -7,9 +7,13 @@
|
|
| 7 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
<style>
|
| 9 |
/* Add any custom styles here */
|
| 10 |
-
.bg-gray-50{
|
| 11 |
-
|
|
|
|
|
|
|
|
|
|
| 12 |
}
|
|
|
|
| 13 |
@keyframes fadeIn {
|
| 14 |
from { opacity: 0; }
|
| 15 |
to { opacity: 1; }
|
|
@@ -59,7 +63,8 @@
|
|
| 59 |
|
| 60 |
</style>
|
| 61 |
</head>
|
| 62 |
-
<body class="bg-gray-50">
|
|
|
|
| 63 |
|
| 64 |
<div class="container mx-auto p-6">
|
| 65 |
|
|
|
|
| 7 |
<script src="https://cdn.tailwindcss.com"></script>
|
| 8 |
<style>
|
| 9 |
/* Add any custom styles here */
|
| 10 |
+
.bg-gray-50 {
|
| 11 |
+
width: 100vw; /* Set width to the full viewport width */
|
| 12 |
+
max-width: 100%; /* Prevent content from overflowing */
|
| 13 |
+
margin-left: auto; /* Center horizontally */
|
| 14 |
+
margin-right: auto; /* Center horizontally */
|
| 15 |
}
|
| 16 |
+
|
| 17 |
@keyframes fadeIn {
|
| 18 |
from { opacity: 0; }
|
| 19 |
to { opacity: 1; }
|
|
|
|
| 63 |
|
| 64 |
</style>
|
| 65 |
</head>
|
| 66 |
+
<body class="bg-gray-50 mx-auto max-w-full">
|
| 67 |
+
|
| 68 |
|
| 69 |
<div class="container mx-auto p-6">
|
| 70 |
|