Skip to content

Commit

Permalink
fix: table scrollable header width
Browse files Browse the repository at this point in the history
  • Loading branch information
WaDadidou committed May 17, 2024
1 parent 6bd2f1f commit 0b10339
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/activity/ActivityTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const scrollableColumns: TableColumns = {
},
};

const breakpointM = 740;
const breakpointM = 800;

export const ActivityTable: React.FC<{
nftId?: string;
Expand Down
1 change: 1 addition & 0 deletions packages/components/table/TableScrollableHeader.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ export const TableScrollableHeader: FC<{ scrollableColumns: TableColumns }> = ({
<TableHeader
columns={scrollableColumns}
style={{
width: "100%",
marginRight: layout.spacing_x1,
borderTopLeftRadius: 0,
}}
Expand Down

0 comments on commit 0b10339

Please sign in to comment.