Skip to content

Commit 691f8f5

Browse files
feat: add padding
1 parent 4853a31 commit 691f8f5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

apps/web/app/[locale]/(app)/hub/page.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export default async function HubPage() {
99
}
1010

1111
return (
12-
<div className="p-6 font-sans space-y-4">
12+
<div className="font-sans space-y-4">
1313
<h2 className="text-2xl font-bold mb-4">Welcome, {session.user.name}!</h2>
1414
<p className="text-lg mb-2">Here is your session data:</p>
1515
<pre className="p-4 rounded-lg overflow-x-auto text-sm bg-card">

apps/web/styles/globals.css

+2-2
Original file line numberDiff line numberDiff line change
@@ -95,15 +95,15 @@
9595

9696
@layer components {
9797
.page-container {
98-
@apply container mx-auto px-4 sm:px-6 lg:px-8;
98+
@apply container mx-auto px-4 sm:px-6 lg:px-8 py-5;
9999
}
100100

101101
.gradient-text {
102102
@apply bg-gradient-to-r from-pink-400 via-violet-700 to-pink-400 dark:from-pink-700 dark:via-violet-500 dark:to-pink-600 text-transparent bg-clip-text relative;
103103
}
104104

105105
.gradient-background {
106-
@apply bg-gradient-to-br from-purple-600 via-violet-500 to-fuchsia-500 text-white;
106+
@apply bg-gradient-to-br from-purple-600 via-violet-500 to-fuchsia-500 text-white;
107107
background-size: 200% 200%;
108108
animation: gradientShift 15s ease infinite;
109109
}

0 commit comments

Comments
 (0)