actually fix motd on phones
All checks were successful
Deploy App / docker (ubuntu-latest) (push) Successful in 55s

This commit is contained in:
Lee 2024-04-16 21:57:09 +01:00
parent 2120d9eeac
commit 9714765e15

@ -3,5 +3,5 @@ export function Card({
}: Readonly<{
children: React.ReactNode;
}>): JSX.Element {
return <div className="bg-secondary rounded-lg p-4">{children}</div>;
return <div className="bg-secondary rounded-lg p-3 w-max xs:w-fit">{children}</div>;
}