fix styling on mojang status page
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m3s

This commit is contained in:
Lee
2024-04-18 08:51:52 +01:00
parent f69d69373c
commit e793d0eb39
3 changed files with 52 additions and 4 deletions

View File

@ -1,3 +1,4 @@
import { CardContent, Card as ShadcnCard } from "@/app/components/ui/card";
import { cn } from "@/common/utils";
import { ReactElement } from "react";
@ -14,5 +15,9 @@ type CardProps = {
};
export function Card({ children, className }: CardProps): ReactElement {
return <div className={cn("bg-secondary rounded-lg p-3", className)}>{children}</div>;
return (
<ShadcnCard className={cn(className, "pt-4")}>
<CardContent>{children}</CardContent>
</ShadcnCard>
);
}