css: Apply box-sizing:border-box to all <details> children

We have this everywhere else, so it should not be different here.

(cherry picked from commit 3c2c79b669555519faa3c4efb208723a7e825f97)
This commit is contained in:
Johannes Meyer 2022-07-26 12:45:00 +02:00
parent 80c35f8571
commit 74b49744d5

View File

@ -194,6 +194,10 @@
html { html {
box-sizing: border-box; box-sizing: border-box;
} }
details > * {
// children somehow default to content-box no matter the inheritance
box-sizing: border-box;
}
*, *,
*:before, *:before,
*:after { *:after {