We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cddcb4e commit 43653f3Copy full SHA for 43653f3
2 files changed
packages/shared/src/components/fields/form/FormWrapper.tsx
@@ -41,6 +41,7 @@ export function FormWrapper({
41
const titleElement = (
42
<PageHeaderTitle
43
className={classNames(
44
+ 'mx-4',
45
!isHeaderTitle && 'mt-5',
46
className?.title ?? 'typo-body',
47
)}
packages/webapp/components/layouts/AccountLayout/Profile/index.tsx
@@ -394,7 +394,10 @@ const ProfileIndex = ({
394
if (isMobile) {
395
return (
396
<FormWrapper
397
- className={{ container: 'relative max-w-[100vw]' }}
+ className={{
398
+ container: 'relative max-w-[100vw]',
399
+ title: 'font-bold typo-title3',
400
+ }}
401
title="Edit Profile"
402
form="submit-profile"
403
rightButtonProps={{ onClick: onSubmit, disabled: isLoading }}
0 commit comments