small update
This commit is contained in:
parent
fb145c7531
commit
f1dc322162
@ -48,11 +48,22 @@ export const GamePage = () => {
|
|||||||
return (
|
return (
|
||||||
<div className={css`
|
<div className={css`
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
`}>
|
||||||
|
<div className={css`
|
||||||
|
margin: auto;
|
||||||
`}>
|
`}>
|
||||||
<h1>{info.release.manifest.title ?? slug!.split("-").map(word => word[0].toUpperCase()+word.slice(1)).join(" ")}</h1>
|
<h1>{info.release.manifest.title ?? slug!.split("-").map(word => word[0].toUpperCase()+word.slice(1)).join(" ")}</h1>
|
||||||
|
<h2>By: {info.release.author}</h2>
|
||||||
|
<div className={css`
|
||||||
|
max-width: 512px;
|
||||||
|
`}>
|
||||||
<Pico8Console carts={info.release.carts} />
|
<Pico8Console carts={info.release.carts} />
|
||||||
<div>By: {info.release.author}</div>
|
</div>
|
||||||
<select defaultValue={info.release.version}>
|
<div className={css`
|
||||||
|
display: flex;
|
||||||
|
justify-content: end;
|
||||||
|
`}>
|
||||||
|
Version: <select defaultValue={info.release.version}>
|
||||||
{
|
{
|
||||||
info.versions.map(v => (
|
info.versions.map(v => (
|
||||||
<option key={v} value={v}>{v}</option>
|
<option key={v} value={v}>{v}</option>
|
||||||
@ -60,5 +71,7 @@ export const GamePage = () => {
|
|||||||
}
|
}
|
||||||
</select>
|
</select>
|
||||||
</div>
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
Loading…
x
Reference in New Issue
Block a user