make padding slighly less on cards
All checks were successful
deploy / deploy (push) Successful in 2m10s

This commit is contained in:
Lee 2023-11-26 01:56:05 +00:00
parent 41090360e1
commit cf75dfb06d
2 changed files with 2 additions and 2 deletions

@ -4,7 +4,7 @@ const { getCodeList } = require("country-list");
const SS_API_URL = ssrSettings.proxy + "/https://scoresaber.com/api";
const SS_GET_PLAYERS_URL = SS_API_URL + "/players?page={}";
// todo: cache this somehow?
// todo: cache this on a file somehow?
async function getTopPlayers() {
console.log("Fetching top players...");
const players = [];

@ -14,7 +14,7 @@ export default function Card({
}: CardProps) {
return (
<CardBase className={outerClassName}>
<CardContent className={clsx(className, "pb-4 pt-2")}>
<CardContent className={clsx(className, "p-3 pb-4 pt-2")}>
{children}
</CardContent>
</CardBase>