This repository was archived by the owner on Oct 21, 2020. It is now read-only.

Description
With React, there are several frameworks that expose a Box component. This component serves to do simple style resets and such, as well as supplement a div that can access e.g. theme colors and sizes.
Coming from grommet, I've already been tripped up by box sizing. Here's their style reset:
display: flex;
box-sizing: border-box;
max-width: 100%;
min-width: 0px;
min-height: 0px;
outline: none;
If something like this does make it in, my vote would be for a default of display: flex. I like using flexbox everywhere and "just writing flexbox" in css is super nice. A flexbox component with some syntactic sugar to get going might be nice.
edit: Still learning svelte... I'm not so sure on the "reset" part now.