Skip to content

Commit 43653f3

Browse files
authored
fix: edit profile header styling (#4434)
1 parent cddcb4e commit 43653f3

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

packages/shared/src/components/fields/form/FormWrapper.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ export function FormWrapper({
4141
const titleElement = (
4242
<PageHeaderTitle
4343
className={classNames(
44+
'mx-4',
4445
!isHeaderTitle && 'mt-5',
4546
className?.title ?? 'typo-body',
4647
)}

packages/webapp/components/layouts/AccountLayout/Profile/index.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,10 @@ const ProfileIndex = ({
394394
if (isMobile) {
395395
return (
396396
<FormWrapper
397-
className={{ container: 'relative max-w-[100vw]' }}
397+
className={{
398+
container: 'relative max-w-[100vw]',
399+
title: 'font-bold typo-title3',
400+
}}
398401
title="Edit Profile"
399402
form="submit-profile"
400403
rightButtonProps={{ onClick: onSubmit, disabled: isLoading }}

0 commit comments

Comments
 (0)