summaryrefslogtreecommitdiff
path: root/data-viewer/data-viewer.css
diff options
context:
space:
mode:
Diffstat (limited to 'data-viewer/data-viewer.css')
-rw-r--r--data-viewer/data-viewer.css32
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;
+ }
+}