fix: Hide transaction checkboxes on mobile (#109)
## Summary - Hides the select/checkbox column in the transactions table on mobile viewports (below `md` breakpoint) using `hidden md:table-cell` on the column meta ### Mobile Screenshot 
This commit is contained in:
parent
d1d1be7586
commit
abd7a2f9aa
Binary file not shown.
|
After Width: | Height: | Size: 112 KiB |
|
|
@ -51,6 +51,9 @@ export function createTransactionColumns({
|
|||
return [
|
||||
{
|
||||
id: 'select',
|
||||
meta: {
|
||||
cellClassName: 'hidden md:table-cell',
|
||||
},
|
||||
header: ({ table }) => (
|
||||
<Checkbox
|
||||
checked={
|
||||
|
|
|
|||
Loading…
Reference in New Issue