blob: 0f9db7adf7593e8cb0b831dd271b4627e6249cca (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
// Styles for /lib/components/data/spotify.jsx component
export const spotifyStyles = /* css */ `
.spotify {
position: relative;
background-color: var(--green);
}
.simple-bar--widgets-background-color-as-foreground .spotify {
color: var(--green);
background-color: transparent;
}
.spotify--hidden-metadata > svg {
margin-right: 0;
}
`;
|