Skip to content

Commit

Permalink
[PAY-2416] Fix stem upload hover
Browse files Browse the repository at this point in the history
  • Loading branch information
raymondjacobson committed Feb 7, 2024
1 parent ec0f75f commit 6138733
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 0 additions & 2 deletions packages/web/src/components/upload/TrackPreview.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,6 @@

.trackPreviewNew:hover {
background: var(--neutral-light-9);
border-top: 1px solid var(--border-strong);
border-bottom: 1px solid var(--border-strong);
}

.trackPreviewNew:hover .fileSizeText {
Expand Down
7 changes: 6 additions & 1 deletion packages/web/src/pages/upload-page/fields/StemFilesView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,12 @@ export const StemFilesView = ({
</HarmonyText>
</Box>
</Flex>
<Flex direction='column' borderRadius='m' border='default'>
<Flex
direction='column'
borderRadius='m'
border='default'
css={{ overflow: 'hidden' }}
>
{stems.map((stem, i) => (
<TrackPreviewNew
className={styles.stemPreview}
Expand Down

0 comments on commit 6138733

Please sign in to comment.