Skip to content

Commit

Permalink
fix(nui): Align columns
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeWasTakenn committed Jan 23, 2022
1 parent 2200b0b commit 16d7f54
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions ui/src/components/Resource.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ const Resource: React.FC = () => {
color="white"
fontFamily="Poppins"
borderBottomColor="#313C4A"
textAlign="center"
>
{column.render('Header')}
<chakra.span pl="4">
Expand Down Expand Up @@ -141,6 +142,7 @@ const Resource: React.FC = () => {
textOverflow="ellipsis"
overflow="hidden"
borderBottomColor="#313C4A"
textAlign={cell.column.id === 'executionTime' ? 'center' : 'left'}
>
{cell.render('Cell')}
</Td>
Expand Down

0 comments on commit 16d7f54

Please sign in to comment.