fix: profile layout style

This commit is contained in:
Mahyar Khanbolooki
2025-07-02 00:57:10 +03:30
parent 3d3c3b5a5e
commit ed1eb8a1ed
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ input[type="password"] {
font-weight: normal;
speak: none;
color: var(--color-disabled);
margin: 10px 0px 10px 0px;
margin: 5px 0px 10px 0px;
font-size: 34px;
/* Controls dot size (width & height) */
line-height: 8px;
+1 -1
View File
@@ -5,7 +5,7 @@ import { ReactQueryProvider } from '@/components/providers/ReactQueryProvider'
export default function ProfileLayout({ children }: { children: React.ReactNode }) {
return (
<ReactQueryProvider>
<div className="min-h-screen grid">
<div className="h-full">
{children}
</div>
</ReactQueryProvider>