diff options
author | sameerasw <[email protected]> | 2025-06-03 00:04:09 +0530 |
---|---|---|
committer | sameerasw <[email protected]> | 2025-06-03 00:04:09 +0530 |
commit | e014013d8de27c4a7bb5dcc66470041f69829d4a (patch) | |
tree | f6f882f2452412415f75f9b1fb93cea0a6332708 /data-viewer/data-viewer.css | |
parent | ab5d377df0f1f87e1de9e53c72716a93e2cdf8d0 (diff) |
Added fallback background as a forced option
Diffstat (limited to 'data-viewer/data-viewer.css')
-rw-r--r-- | data-viewer/data-viewer.css | 11 |
1 files changed, 9 insertions, 2 deletions
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; |