Skip to content

Commit

Permalink
OV-1: * fix form-header font size
Browse files Browse the repository at this point in the history
  • Loading branch information
Oleksandra Nedashkivska committed Aug 19, 2024
1 parent 120d4ab commit 07bb96b
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ const FormHeader: React.FC<Properties> = ({ headerText, subheader }) => {
<>
{/* TODO: Add logo */}
<h2 style={{ marginBottom: '50px' }}>LOGO</h2>
<Heading as="h1" color="white" mb="6px">
<Heading as="h1" color="white" mb="6px" fontSize="30px">
{headerText}
</Heading>
<Text mb="24px">{subheader}</Text>
<Text mb="24px" fontSize="14px">
{subheader}
</Text>
</>
);
};
Expand Down

0 comments on commit 07bb96b

Please sign in to comment.