Skip to content

Commit f16fb39

Browse files
committed
style(layout): add vertical spacing to content div
Add 'space-y-10' class to the main content div to improve vertical spacing between child components for better readability and layout consistency.
1 parent ae02ac0 commit f16fb39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/layout/content.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ export default function Content() {
3535
}
3636

3737
return (
38-
<div>
38+
<div className="space-y-10">
3939
<PageTitle />
4040

4141
{uploadedFile ? (

0 commit comments

Comments
 (0)