fix: fixed lending table widths

This commit is contained in:
Linkie Link 2024-02-16 17:15:59 +01:00
parent 5846e893d1
commit fc9fcf13fc
No known key found for this signature in database
GPG Key ID: 5318B0F2564D38EA
6 changed files with 12 additions and 4 deletions

View File

@ -48,7 +48,7 @@ export default function Manage(props: Props) {
if (!address) return null if (!address) return null
return ( return (
<div className='flex justify-end z-10'> <div className='z-10 flex justify-end'>
<DropDownButton items={ITEMS} text='Manage' color='tertiary' /> <DropDownButton items={ITEMS} text='Manage' color='tertiary' />
</div> </div>
) )

View File

@ -66,7 +66,7 @@ export default function Row<T>(props: Props<T>) {
spacingClassName ?? 'px-3 py-4', spacingClassName ?? 'px-3 py-4',
type && type !== 'strategies' && isSymbolOrName && 'border-l', type && type !== 'strategies' && isSymbolOrName && 'border-l',
type && type !== 'strategies' && getBorderColor(type, cell.row.original as any), type && type !== 'strategies' && getBorderColor(type, cell.row.original as any),
cell.column.columnDef.meta?.className ?? 'w-min', cell.column.columnDef.meta?.className,
)} )}
> >
{flexRender(cell.column.columnDef.cell, cell.getContext())} {flexRender(cell.column.columnDef.cell, cell.getContext())}

View File

@ -76,7 +76,6 @@ export default function Table<T>(props: Props<T>) {
props.spacingClassName ?? 'px-4 py-3', props.spacingClassName ?? 'px-4 py-3',
header.column.getCanSort() && 'hover:cursor-pointer', header.column.getCanSort() && 'hover:cursor-pointer',
header.id === 'symbol' || header.id === 'name' ? 'text-left' : 'text-right', header.id === 'symbol' || header.id === 'name' ? 'text-left' : 'text-right',
'w-min',
header.column.columnDef.meta?.className, header.column.columnDef.meta?.className,
)} )}
> >

View File

@ -10,6 +10,9 @@ export const DEPOSIT_CAP_META = {
accessorKey: 'marketDepositCap', accessorKey: 'marketDepositCap',
header: 'Deposit Cap', header: 'Deposit Cap',
id: 'marketDepositCap', id: 'marketDepositCap',
meta: {
className: 'w-50',
},
} }
export const marketDepositCapSortingFn = ( export const marketDepositCapSortingFn = (

View File

@ -13,6 +13,9 @@ export const LEND_BUTTON_META = {
accessorKey: 'lend', accessorKey: 'lend',
enableSorting: false, enableSorting: false,
header: '', header: '',
meta: {
className: 'w-40',
},
} }
interface Props { interface Props {

View File

@ -13,6 +13,9 @@ export const MANAGE_META = {
accessorKey: 'manage', accessorKey: 'manage',
enableSorting: false, enableSorting: false,
header: '', header: '',
meta: {
className: 'w-40',
},
} }
interface Props { interface Props {
@ -75,7 +78,7 @@ export default function Manage(props: Props) {
if (!address) return null if (!address) return null
return ( return (
<div className='flex justify-end z-10'> <div className='z-10 flex justify-end'>
<DropDownButton items={ITEMS} text='Manage' color='tertiary' /> <DropDownButton items={ITEMS} text='Manage' color='tertiary' />
</div> </div>
) )