From 07bb96b8e7489c8c445ecdf889d7ae43220e6894 Mon Sep 17 00:00:00 2001 From: Oleksandra Nedashkivska Date: Tue, 20 Aug 2024 00:07:06 +0300 Subject: [PATCH] OV-1: * fix form-header font size --- .../auth/components/common/form-header/form-header.tsx | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/frontend/src/bundles/auth/components/common/form-header/form-header.tsx b/frontend/src/bundles/auth/components/common/form-header/form-header.tsx index cdda109d9..47397c365 100644 --- a/frontend/src/bundles/auth/components/common/form-header/form-header.tsx +++ b/frontend/src/bundles/auth/components/common/form-header/form-header.tsx @@ -10,10 +10,12 @@ const FormHeader: React.FC = ({ headerText, subheader }) => { <> {/* TODO: Add logo */}

LOGO

- + {headerText} - {subheader} + + {subheader} + ); };