support opacity 0, spellcheck

This commit is contained in:
Kendall Garner 2024-03-01 19:54:30 -08:00
parent 753ca01d41
commit f50d1e0a8c
No known key found for this signature in database
GPG key ID: 18D2767419676C87
3 changed files with 4 additions and 7 deletions

View file

@ -42,11 +42,11 @@ const HeaderItemWrapper = styled.div`
z-index: 2;
`;
interface TransparendGridContainerProps {
interface TransparentGridContainerProps {
opacity: number;
}
const GridContainer = styled.div<TransparendGridContainerProps>`
const GridContainer = styled.div<TransparentGridContainerProps>`
display: grid;
grid-template-rows: auto minmax(0, 1fr);
grid-template-columns: 1fr;
@ -82,8 +82,6 @@ export const FullScreenPlayerQueue = () => {
},
];
console.log('opacity', opacity);
return (
<GridContainer
className="full-screen-player-queue-container"