style(notifcaion): style changes to the notificaion card and started the table
All checks were successful
Build and Push LST Docker Image / docker (push) Successful in 1m49s

This commit is contained in:
2026-04-03 17:16:58 -05:00
parent 74262beb65
commit 7d6c2db89c
2 changed files with 13 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ export default function NotificationsSubCard({ user }: any) {
return (
<div>
<Card className="p-3 w-128">
<Card className="p-3 w-lg">
<CardHeader>
<CardTitle>Notifications</CardTitle>
<CardDescription>

View File

@@ -57,8 +57,9 @@ function RouteComponent() {
},
});
return (
<div className="flex justify-center flex-col pt-4 gap-2 lg:flex-row">
<div>
<div className="flex justify-center flex-col pt-4 gap-2">
<div className="flex justify-center flex-col pt-4 gap-2 lg:flex-row">
<div>
<Card className="p-6 w-96">
<CardHeader>
<CardTitle>Profile</CardTitle>
@@ -99,7 +100,7 @@ function RouteComponent() {
<div>
<Suspense
fallback={
<Card className="p-3 w-96">
<Card className="p-3 w-lg">
<CardHeader>
<CardTitle>Notifications</CardTitle>
</CardHeader>
@@ -116,6 +117,14 @@ function RouteComponent() {
{session && <NotificationsSubCard user={session.user} />}
</Suspense>
</div>
</div>
<div className="w-fill">
<Card>
<CardHeader className="text-center">
This is where the user's current notification subs will be.
</CardHeader>
</Card>
</div>
</div>
);
}