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 20, 2024
1 parent a7a7dad commit ddbe9d8
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 ddbe9d8

Please sign in to comment.