Yoast / yoast-components

Accessible React components by Yoast
GNU General Public License v3.0
21 stars 6 forks source link

Table component improvements #220

Open IreneStr opened 7 years ago

IreneStr commented 7 years ago

Copied from https://github.com/Yoast/yoast-components/pull/219#issuecomment-321549740

On My Yoast, everything inherits box-sizing: border-box while here it's the default content-box; this actually affects the size of the flex items. I'd consider to switch everything to border-box but for performance reasons this should be done at the root level using the universal selector * and not in the components.

Media queries breakpoints are hardcoded. On My Yoast instead, we're using some values from a config file. I'd consider to do the same thing here, maybe in a separate PR.

IreneStr commented 7 years ago

Related #221