fix styling on mojang status page
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m3s
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 1m3s
This commit is contained in:
@ -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>
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user