users/ryan/modules/simple-bar/simple-bar-source/lib/styles/components/data/zoom.js

0c8fa3a2a270747f3dbb54fe8792f3f0aec997e3 · 553 B · 26 lines raw

1 // Styles for /lib/components/data/zoom.jsx component
2 export const zoomStyles = /* css */ `
3 .zoom {
4 position: relative;
5 display: flex;
6 align-items: center;
7 background-color: var(--minor);
8 }
9 .simple-bar--widgets-background-color-as-foreground .zoom {
10 color: var(--minor);
11 background-color: transparent;
12 }
13 .simple-bar--no-color-in-data .zoom {
14 background-color: var(--minor);
15 }
16 .zoom__icon {
17 width: 14px;
18 height: 14px;
19 fill: var(--red);
20 margin: 0 1px 0 4px;
21 transform: translateZ(0);
22 }
23 .zoom__icon--on {
24 fill: var(--green);
25 }
26 `;