Skip to content

Commit

Permalink
fix: add width to log indicator column to ensure that a single column…
Browse files Browse the repository at this point in the history
… doesn't take half the space
  • Loading branch information
ahmadshaheer committed Jan 27, 2025
1 parent 28cfeb7 commit ec7b761
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export const TableCellStyled = styled.td<TableHeaderCellStyledProps>`
props.$isDarkMode ? 'inherit' : themeColors.whiteCream};
${({ $isLogIndicator }): string =>
$isLogIndicator ? 'padding: 0 0 0 8px;' : ''}
$isLogIndicator ? 'padding: 0 0 0 8px;width: 15px;' : ''}
color: ${(props): string =>
props.$isDarkMode ? themeColors.white : themeColors.bckgGrey};
`;
Expand Down

0 comments on commit ec7b761

Please sign in to comment.