Add font sizes to themes

This commit is contained in:
Charles Bochet
2023-04-14 11:06:20 +02:00
parent 0445c03b51
commit d08066fb9d
9 changed files with 39 additions and 20 deletions

View File

@ -19,8 +19,8 @@ const ContentContainer = styled.div`
flex-direction: column;
background: ${(props) => props.theme.noisyBackground};
flex: 1;
padding-right: 12px;
padding-bottom: 12px;
padding-right: ${(props) => props.theme.spacing(3)};
padding-bottom: ${(props) => props.theme.spacing(3)};
`;
const ContentSubContainer = styled.div`