Fix opacity on fullscreen player queue
This commit is contained in:
parent
d51ca37e1b
commit
cd3ec158d3
1 changed files with 2 additions and 1 deletions
|
@ -51,7 +51,8 @@ const GridContainer = styled.div<TransparendGridContainerProps>`
|
||||||
grid-template-rows: auto minmax(0, 1fr);
|
grid-template-rows: auto minmax(0, 1fr);
|
||||||
grid-template-columns: 1fr;
|
grid-template-columns: 1fr;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
background: rgb(var(--main-bg-transparent) ${({ opacity }) => opacity}%);
|
/* stylelint-disable-next-line color-function-notation */
|
||||||
|
background: rgb(var(--main-bg-transparent), ${({ opacity }) => opacity}%);
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|
Reference in a new issue