add large table size

This commit is contained in:
jeffvli
2025-10-09 14:25:27 -07:00
parent c2715a2d7e
commit 943b26dfea
16 changed files with 432 additions and 76 deletions
@@ -1,3 +1,4 @@
import clsx from 'clsx';
import { memo, useMemo } from 'react';
import { generatePath, Link } from 'react-router-dom';
@@ -31,7 +32,12 @@ const AlbumArtistsColumn = (props: ItemTableListInnerColumn) => {
if (Array.isArray(row)) {
return (
<TableColumnContainer {...props}>
<div className={styles.artistsContainer}>
<div
className={clsx(styles.artistsContainer, {
[styles.compact]: props.size === 'compact',
[styles.large]: props.size === 'large',
})}
>
{albumArtists.map((albumArtist, index) => (
<Text
component={Link}