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 ( return (
<div> <div>
<Card className="p-3 w-128"> <Card className="p-3 w-lg">
<CardHeader> <CardHeader>
<CardTitle>Notifications</CardTitle> <CardTitle>Notifications</CardTitle>
<CardDescription> <CardDescription>

View File

@@ -57,6 +57,7 @@ function RouteComponent() {
}, },
}); });
return ( return (
<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 className="flex justify-center flex-col pt-4 gap-2 lg:flex-row">
<div> <div>
<Card className="p-6 w-96"> <Card className="p-6 w-96">
@@ -99,7 +100,7 @@ function RouteComponent() {
<div> <div>
<Suspense <Suspense
fallback={ fallback={
<Card className="p-3 w-96"> <Card className="p-3 w-lg">
<CardHeader> <CardHeader>
<CardTitle>Notifications</CardTitle> <CardTitle>Notifications</CardTitle>
</CardHeader> </CardHeader>
@@ -117,5 +118,13 @@ function RouteComponent() {
</Suspense> </Suspense>
</div> </div>
</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>
); );
} }