Skip to content

Commit

Permalink
constantize font-size and spacing
Browse files Browse the repository at this point in the history
  • Loading branch information
justinpark committed Aug 24, 2023
1 parent f4a3913 commit 6a174e6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions superset-frontend/src/SqlLab/components/ResultSet/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -363,14 +363,14 @@ const ResultSet = ({
>
<Label
css={css`
line-height: 17px;
line-height: ${theme.typography.sizes.l}px;
`}
>
{limitMessage && (
<Icons.ExclamationCircleOutlined
css={css`
font-size: 12px;
margin-right: 4px;
font-size: ${theme.typography.sizes.m}px;
margin-right: ${theme.gridUnit}px;
`}
/>
)}
Expand Down Expand Up @@ -542,7 +542,7 @@ const ResultSet = ({
css={[
css`
height: 28px;
width: calc(100% - ${ROWS_CHIP_WIDTH - GAP}px);
width: calc(100% - ${ROWS_CHIP_WIDTH + GAP}px);
code {
width: 100%;
overflow: hidden;
Expand Down

0 comments on commit 6a174e6

Please sign in to comment.