Skip to content

Commit

Permalink
fix table head aligmnet
Browse files Browse the repository at this point in the history
  • Loading branch information
alongoni committed Nov 10, 2023
1 parent cd6e761 commit 75b1da2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/view/components/ContractsTable/ContractsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -214,11 +214,11 @@ function ContractTableRow({
</Typography>
</Tooltip>
</TableCell>
<TableCell align="right">
<TableCell>
<Box display="flex">
<DefaultToolTipButton
id={`share-contract-${takeLastChars(contract.uuid)}`}
sx={{ marginLeft: '0.5rem', color: 'white' }}
sx={{ color: 'white' }}
title="Share"
Icon={ShareIcon}
onClick={event =>
Expand Down Expand Up @@ -281,7 +281,7 @@ export function ContractsTable({
<TableCell>
<Typography variant="caption">ADDED ON</Typography>
</TableCell>
<TableCell align="right">
<TableCell>
<Typography variant="caption">ACTIONS</Typography>
</TableCell>
</TableRow>
Expand Down

0 comments on commit 75b1da2

Please sign in to comment.