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