azz / styled-css-grid

🍱 A tiny CSS grid layout for React
https://styled-css-grid.js.org/
MIT License
623 stars 42 forks source link

Does NOT centering #43

Open ozasadnyy opened 6 years ago

ozasadnyy commented 6 years ago
<Cell middle center>
   <div>Text</div>
</Cell>

Doesn't center if inside it anything else than text.

benzai commented 6 years ago

I have the same issue.

azz commented 6 years ago

center just sets text-align to center. Do you have an alternate proposal?

https://github.com/azz/styled-css-grid/blob/8a44feff034ee6b7c75e5b70dc65e2aab05354ba/lib/Cell.js#L14

rafaelderolez commented 6 years ago

@azz css-tricks has a decent guide on this. Maybe align-items, justify-items, and justify-content could come into play here.