Skip to content

Commit

Permalink
Fix uneven list header padding (#12029) (#12412)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-s-molina authored Jan 13, 2021
1 parent 5fe4173 commit 551a3e4
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ export const Table = styled.table`
background: ${({ theme }) => theme.colors.grayscale.light5};
position: sticky;
top: 0;
&:first-of-type {
padding-left: ${({ theme }) => theme.gridUnit * 4}px;
}
Expand All @@ -76,11 +77,14 @@ export const Table = styled.table`
span {
white-space: nowrap;
display: flex;
align-items: center;
line-height: 2;
}
svg {
display: inline-block;
top: 6px;
top: 2px;
position: relative;
}
}
Expand Down

0 comments on commit 551a3e4

Please sign in to comment.