Faithlife / styled-ui

Faithlife UI styleguide and set of components
https://faithlife.github.io/styled-ui/
MIT License
13 stars 50 forks source link

Specify box-sizing in SimpleToast component #517

Closed RobertBolender closed 3 years ago

RobertBolender commented 3 years ago

This is the simplest change that could possibly work, and it can't make any other cases worse.

Most CSS resets use something like:

*, *:before, *:after {
  box-sizing: border-box;
}

With such a reset, this specificity will be sufficient. Tested by adding such a reset to the index.html in this catalog project.

Fixes #487