css: Apply `box-sizing:border-box` to all `<details>` children
We have this everywhere else, so it should not be different here.
This commit is contained in:
parent
503f9b7316
commit
3c2c79b669
|
@ -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 {
|
||||||
|
|
Loading…
Reference in New Issue