From e014013d8de27c4a7bb5dcc66470041f69829d4a Mon Sep 17 00:00:00 2001 From: sameerasw Date: Tue, 3 Jun 2025 00:04:09 +0530 Subject: Added fallback background as a forced option --- data-viewer/data-viewer.css | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) (limited to 'data-viewer/data-viewer.css') diff --git a/data-viewer/data-viewer.css b/data-viewer/data-viewer.css index e935ce0..3add494 100644 --- a/data-viewer/data-viewer.css +++ b/data-viewer/data-viewer.css @@ -440,8 +440,8 @@ body { /* Styling for the website lists section */ .tables-container { display: grid; - grid-template-columns: 1fr 1fr; - gap: 20px; + grid-template-columns: 1fr 1fr 1fr; + gap: 16px; margin-top: 16px; } @@ -597,6 +597,13 @@ body { } /* Add responsive adjustments for mobile */ +@media (max-width: 1024px) { + .tables-container { + grid-template-columns: 1fr; + gap: 12px; + } +} + @media (max-width: 768px) { .repository-url-buttons { flex-direction: column; -- cgit v1.2.3