make padding slighly less on cards
All checks were successful
deploy / deploy (push) Successful in 2m10s
All checks were successful
deploy / deploy (push) Successful in 2m10s
This commit is contained in:
parent
41090360e1
commit
cf75dfb06d
@ -4,7 +4,7 @@ const { getCodeList } = require("country-list");
|
|||||||
const SS_API_URL = ssrSettings.proxy + "/https://scoresaber.com/api";
|
const SS_API_URL = ssrSettings.proxy + "/https://scoresaber.com/api";
|
||||||
const SS_GET_PLAYERS_URL = SS_API_URL + "/players?page={}";
|
const SS_GET_PLAYERS_URL = SS_API_URL + "/players?page={}";
|
||||||
|
|
||||||
// todo: cache this somehow?
|
// todo: cache this on a file somehow?
|
||||||
async function getTopPlayers() {
|
async function getTopPlayers() {
|
||||||
console.log("Fetching top players...");
|
console.log("Fetching top players...");
|
||||||
const players = [];
|
const players = [];
|
||||||
|
@ -14,7 +14,7 @@ export default function Card({
|
|||||||
}: CardProps) {
|
}: CardProps) {
|
||||||
return (
|
return (
|
||||||
<CardBase className={outerClassName}>
|
<CardBase className={outerClassName}>
|
||||||
<CardContent className={clsx(className, "pb-4 pt-2")}>
|
<CardContent className={clsx(className, "p-3 pb-4 pt-2")}>
|
||||||
{children}
|
{children}
|
||||||
</CardContent>
|
</CardContent>
|
||||||
</CardBase>
|
</CardBase>
|
||||||
|
Loading…
Reference in New Issue
Block a user