Skip to content

Commit 3279cf1

Browse files
committed
Styling updates.
1 parent 9d5119f commit 3279cf1

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

apps/web/app/account/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ export default function AccountPage() {
8585

8686
return (
8787
<div className="bg-ps-primary h-[calc(100vh-6rem)] overflow-y-scroll">
88-
<div className="container mx-auto px-2 py-2 md:px-6 md:py-8">
88+
<div className="container mx-auto p-4 md:px-6 md:py-8">
8989
<div className="max-w-6xl mx-auto">
9090
<div className="mb-8">
9191
<h1 className="md:text-4xl font-bold text-ps-primary mb-2">

apps/web/app/components/Navigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function Navigation({ hasDashboardAccess }: { hasDashboardAccess?
1717

1818
return (
1919
<nav className="border-ps" style={{ borderBottomWidth: '1px' }}>
20-
<div className="container mx-auto px-6 py-4">
20+
<div className="container mx-auto p-4 md:px-6 md:py-4">
2121
<div className="flex gap-4 flex-col md:items-center">
2222
{/* Logo */}
2323
<Link

apps/web/app/prompt/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export default async function PromptDetail({ params }: PromptPageProps) {
2929

3030
return (
3131
<div className="min-h-screen bg-ps-primary">
32-
<div className="container mx-auto px-2 py-4 md:px-6 md:py-8">
32+
<div className="container mx-auto p-4 md:px-6 md:py-8">
3333
<div className="max-w-4xl mx-auto">
3434
<div className="bg-ps-secondary rounded-lg border-ps p-4 md:p-8 mb-6 border shadow-md">
3535
<PromptHeader prompt={prompt} />

apps/web/app/prompt/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ export default async function Prompt() {
2020

2121
return (
2222
<div className="min-h-screen bg-ps-primary">
23-
<div className="container mx-auto px-2 py-2 md:px-6 md:py-8">
23+
<div className="container mx-auto p-4 md:px-6 md:py-8">
2424
<div className="max-w-4xl mx-auto">
2525
{/* Header */}
2626
<div className="mb-8">

0 commit comments

Comments
 (0)