oh deer
This commit is contained in:
parent
81b2299a02
commit
cc1f3c40eb
1 changed files with 4 additions and 4 deletions
|
@ -7,7 +7,7 @@ const emojis = [
|
||||||
"🎄",
|
"🎄",
|
||||||
"🐦",
|
"🐦",
|
||||||
"🦊",
|
"🦊",
|
||||||
"🐻",
|
"🦌",
|
||||||
"🐶",
|
"🐶",
|
||||||
"🐕",
|
"🐕",
|
||||||
"🐩",
|
"🐩",
|
||||||
|
@ -17,7 +17,7 @@ const emojis = [
|
||||||
const Emoji = ({ children }: { children: string }) => <div>{children}</div>;
|
const Emoji = ({ children }: { children: string }) => <div>{children}</div>;
|
||||||
|
|
||||||
const Cell = () => (
|
const Cell = () => (
|
||||||
<Cycle width_px={60} height_px={60} style={{}}>
|
<Cycle width_px={50} height_px={50} style={{}}>
|
||||||
<Emoji> </Emoji>
|
<Emoji> </Emoji>
|
||||||
{...emojis.map(e => <Emoji>{e}</Emoji>)}
|
{...emojis.map(e => <Emoji>{e}</Emoji>)}
|
||||||
</Cycle>
|
</Cycle>
|
||||||
|
@ -26,12 +26,12 @@ const Cell = () => (
|
||||||
render_and_copy(
|
render_and_copy(
|
||||||
<div
|
<div
|
||||||
style={{
|
style={{
|
||||||
width: "calc(60px * 7)",
|
width: "calc(50px * 7)",
|
||||||
aspectRatio: "1",
|
aspectRatio: "1",
|
||||||
margin: "0 auto",
|
margin: "0 auto",
|
||||||
display: "grid",
|
display: "grid",
|
||||||
gridTemplateColumns: "repeat(7, 1fr)",
|
gridTemplateColumns: "repeat(7, 1fr)",
|
||||||
fontSize: "40px",
|
fontSize: "33px",
|
||||||
outline: "1px solid black",
|
outline: "1px solid black",
|
||||||
backgroundColor: "#296639",
|
backgroundColor: "#296639",
|
||||||
}}
|
}}
|
||||||
|
|
Loading…
Reference in a new issue