Set lyrics scrollarea to max height by default

This commit is contained in:
jeffvli
2023-06-05 02:46:39 -07:00
committed by Jeff
parent 98fa47348c
commit f10912d930
@@ -39,6 +39,18 @@ const LyricsContainer = styled(ScrollArea)`
rgba(0, 0, 0, 100%) 85%,
transparent 95%
);
&.mantine-ScrollArea-root {
height: 100%;
}
& .mantine-ScrollArea-viewport {
height: 100% !important;
}
& .mantine-ScrollArea-viewport > div {
height: 100%;
}
`;
const ActiveTabIndicator = styled(motion.div)`