thomaspark / gridgarden

A game for learning CSS grid layout 🥕
https://cssgridgarden.com
MIT License
3.19k stars 300 forks source link

Level 24 Won't Accept 50px repeat(3, 1fr) 50px #149

Closed obriedan closed 3 years ago

obriedan commented 3 years ago

Love the game so far. 👍🏻

Running Chrome Version 93.0.4577.82 level 24 doesn't seem to accept grid-template-columns: 50px repeat(3,1fr) 50px

but will accept grid-template-columns: 50px 1fr 1fr 1fr 50px image

Appreciate you making this and Flexbox Froggy! 🙏🏻

thomaspark commented 3 years ago

Hey @dmonomania, thanks for the bug report. Looks like there are some rounding differences when using 1fr 1fr 1fr versus repeat(3, 1fr)...

I'm adding a fix for this which hopefully keeps everything else working.