This commit is contained in:
mehbark 2023-11-28 01:50:46 -05:00
parent 81b2299a02
commit cc1f3c40eb

View file

@ -7,7 +7,7 @@ const emojis = [
"🎄",
"🐦",
"🦊",
"🐻",
"🦌",
"🐶",
"🐕",
"🐩",
@ -17,7 +17,7 @@ const emojis = [
const Emoji = ({ children }: { children: string }) => <div>{children}</div>;
const Cell = () => (
<Cycle width_px={60} height_px={60} style={{}}>
<Cycle width_px={50} height_px={50} style={{}}>
<Emoji> </Emoji>
{...emojis.map(e => <Emoji>{e}</Emoji>)}
</Cycle>
@ -26,12 +26,12 @@ const Cell = () => (
render_and_copy(
<div
style={{
width: "calc(60px * 7)",
width: "calc(50px * 7)",
aspectRatio: "1",
margin: "0 auto",
display: "grid",
gridTemplateColumns: "repeat(7, 1fr)",
fontSize: "40px",
fontSize: "33px",
outline: "1px solid black",
backgroundColor: "#296639",
}}