feat: remove default inner padding for dashboard pages

This commit is contained in:
2025-05-30 21:26:43 +02:00
parent 66edadfeda
commit 5b816c6873
2 changed files with 8 additions and 7 deletions

View File

@ -7,7 +7,7 @@ const PersonalInfoPage: FC = () => {
const profile = useAuth((state) => state.profile);
return (
<>
<div className="p-4 sm:p-8">
<h1 className="dark:text-gray-200 text-gray-800 text-2xl">
Your profile info in Home services
</h1>
@ -61,7 +61,7 @@ const PersonalInfoPage: FC = () => {
</div>
</div>
</div>
</>
</div>
);
};