Skip to content

Commit

Permalink
style: currentTheme
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtiti committed Aug 2, 2024
1 parent cb16827 commit 0660c3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const STableRow = styled(TableRow)(() => {
const STableCellHead = styled(TableCell)(() => {
const { currentTheme } = useCustomTheme();
return {
color: `${currentTheme.textSecondary}`,
color: currentTheme.textSecondary,
textAlign: 'left',
};
});
Expand All @@ -129,7 +129,7 @@ const LogoCell = styled(TableCell)(() => {
color: currentTheme.textPrimary,
display: 'flex',
alignItems: 'center',
gap: `${currentTheme.gap}`,
gap: currentTheme.gap,
border: 'none',
textAlign: 'left',
};
Expand Down

0 comments on commit 0660c3f

Please sign in to comment.