mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-09-13 14:46:10 -05:00
Test page adjustments
This commit is contained in:
@@ -5,10 +5,12 @@ export const Main = ({
|
||||
children,
|
||||
className,
|
||||
halfWidth,
|
||||
style,
|
||||
}: {
|
||||
children: React.ReactNode;
|
||||
className?: string;
|
||||
halfWidth?: boolean;
|
||||
style?: React.CSSProperties;
|
||||
}) => (
|
||||
<main
|
||||
className={clsx(
|
||||
@@ -17,6 +19,7 @@ export const Main = ({
|
||||
{ "half-width": halfWidth },
|
||||
className
|
||||
)}
|
||||
style={style}
|
||||
>
|
||||
{children}
|
||||
</main>
|
||||
|
||||
@@ -47,8 +47,8 @@ export default function BuildsPage() {
|
||||
|
||||
return (
|
||||
<>
|
||||
<div id="top-leaderboard" />
|
||||
<Main className="stack md">
|
||||
<div id="top-leaderboard" style={{ marginTop: "var(--s-20)" }} />
|
||||
<Main className="stack md" style={{ paddingBlockStart: "var(--s-12)" }}>
|
||||
{weaponCategories.map((category) => (
|
||||
<div key={category.name} className="builds__category">
|
||||
<div className="builds__category__header">
|
||||
|
||||
@@ -152,6 +152,7 @@
|
||||
background-color: var(--bg-lighter);
|
||||
gap: var(--s-6);
|
||||
margin-block-start: auto;
|
||||
padding-block-end: var(--s-32);
|
||||
}
|
||||
|
||||
.layout__footer__link-list {
|
||||
|
||||
Reference in New Issue
Block a user