Skip to content

Commit

Permalink
chore: Update font-sizes in QueryPreviewModal (apache#19620)
Browse files Browse the repository at this point in the history
* Remove hacky font-sizes

* Remove hacky font-size SavedQueryPreviewModal
  • Loading branch information
geido authored and philipher29 committed Jun 9, 2022
1 parent 27e3aa0 commit 4f3319c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ import { QueryObject } from 'src/views/CRUD/types';

const QueryTitle = styled.div`
color: ${({ theme }) => theme.colors.secondary.light2};
font-size: ${({ theme }) => theme.typography.sizes.s - 1}px;
font-size: ${({ theme }) => theme.typography.sizes.s}px;
margin-bottom: 0;
text-transform: uppercase;
`;

const QueryLabel = styled.div`
color: ${({ theme }) => theme.colors.grayscale.dark2};
font-size: ${({ theme }) => theme.typography.sizes.m - 1}px;
font-size: ${({ theme }) => theme.typography.sizes.m}px;
padding: 4px 0 24px 0;
`;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@ import { useQueryPreviewState } from 'src/views/CRUD/data/hooks';

const QueryTitle = styled.div`
color: ${({ theme }) => theme.colors.secondary.light2};
font-size: ${({ theme }) => theme.typography.sizes.s - 1}px;
font-size: ${({ theme }) => theme.typography.sizes.s}px;
margin-bottom: 0;
text-transform: uppercase;
`;

const QueryLabel = styled.div`
color: ${({ theme }) => theme.colors.grayscale.dark2};
font-size: ${({ theme }) => theme.typography.sizes.m - 1}px;
font-size: ${({ theme }) => theme.typography.sizes.m}px;
padding: 4px 0 16px 0;
`;

Expand Down

0 comments on commit 4f3319c

Please sign in to comment.