blob: 5de3b1fed36aceaf7f0368bbf3676d365b79d6ce (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// Styles for /lib/components/data/music.jsx component
export const musicStyles = /* css */ `
.music {
position: relative;
background-color: var(--green);
}
.simple-bar--widgets-background-color-as-foreground .music {
color: var(--green);
background-color: transparent;
}
`;
|