diff options
author | sameerasw <[email protected]> | 2025-05-09 01:46:23 +0530 |
---|---|---|
committer | sameerasw <[email protected]> | 2025-05-09 01:46:23 +0530 |
commit | cdad919d3f7593c53deef320053f71417c246822 (patch) | |
tree | abadf1c2e146e13e9dda5b153ab4822185a02559 /data-viewer/data-viewer.css | |
parent | 3badfce6d20405153864180deaa86136014b2cba (diff) |
re-ordered the advanced settings and removed annoying pop-ups
Diffstat (limited to 'data-viewer/data-viewer.css')
-rw-r--r-- | data-viewer/data-viewer.css | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/data-viewer/data-viewer.css b/data-viewer/data-viewer.css index 17edbda..6b058a1 100644 --- a/data-viewer/data-viewer.css +++ b/data-viewer/data-viewer.css @@ -606,3 +606,35 @@ body { width: 100%; } } + +/* Global toggles container styling */ +.global-toggles-container { + background-color: var(--bg-color); + border-radius: var(--radius-sm); + padding: 16px; + border-left: 3px solid var(--accent-color); +} + +.toggle-row { + display: flex; + flex-wrap: wrap; + gap: 16px; + margin-bottom: 12px; +} + +.toggle-row .toggle-container { + flex: 1; + min-width: 180px; + margin-bottom: 0; +} + +@media (max-width: 768px) { + .toggle-row { + flex-direction: column; + gap: 8px; + } + + .toggle-row .toggle-container { + margin-bottom: 4px; + } +} |