Skip to content

Commit d51267b

Browse files
committed
fix: swapped bottom left and top right corners in SongDetails
1 parent 0f44393 commit d51267b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/frontend/src/modules/song/components/SongDetails.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ type SongDetailsProps = {
1414

1515
const SongDetailsRow = ({ children }: { children: React.ReactNode }) => {
1616
return (
17-
<tr className='odd:bg-zinc-800/50 even:bg-zinc-800 first:[&_td]:first:rounded-tl-xl last:[&_td]:first:rounded-tr-xl first:[&_td]:last:rounded-bl-xl last:[&_td]:last:rounded-br-xl'>
17+
<tr className='odd:bg-zinc-800/50 even:bg-zinc-800 first:[&_td]:first:rounded-tl-xl last:[&_td]:first:rounded-bl-xl first:[&_td]:last:rounded-tr-xl last:[&_td]:last:rounded-br-xl'>
1818
{children}
1919
</tr>
2020
);

0 commit comments

Comments
 (0)