deptagency / dept-engineering-blog-ui

dept-engineering-blog-ui.vercel.app
MIT License
1 stars 3 forks source link

Homegrown Grid #53

Closed cmdea closed 2 years ago

cmdea commented 2 years ago

We're currently using MUI's Grid component for layout help. It would be great to remove MUI as a dependency, so let's implement our own homegrown Grid solution. Bri started a PR here #47. Feel free to build off her work or start fresh.

I'd love to be able to keep some version of the column span syntax so we can change the amount of width an item takes up according to breakpoint, all while keeping the idea of an item taking up x number of columns out of the grid.

I had taken a look at this https://moderncss.dev/solutions-to-replace-the-12-column-grid/ when I had initially started and think either the flexbox-based or grid-based solution might work here.