Fix uneven list header padding (#12029) (#12412)

This commit is contained in:
Michael S. Molina
2021-01-13 04:29:43 -03:00
committed by GitHub
parent 5fe4173a5d
commit 551a3e4373

View File

@@ -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;
}
@@ -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;
}
}