chore: fix padding issue

This commit is contained in:
Fabio Berger
2018-10-15 17:46:42 +01:00
parent 6bf27ac57f
commit 8b8c958203

View File

@@ -117,9 +117,11 @@ export class OverviewContent extends React.Component<OverviewContentProps, Overv
}
private _renderSectionTitle(text: string): React.ReactNode {
return (
<Text fontColor={colors.projectsGrey} fontSize="30px" fontWeight="bold">
{text}
</Text>
<Container paddingTop="30px">
<Text fontColor={colors.projectsGrey} fontSize="30px" fontWeight="bold">
{text}
</Text>
</Container>
);
}
private _renderSectionDescription(text: string): React.ReactNode {