aemsites / esri

Apache License 2.0
1 stars 1 forks source link

Normalize box-sizing #116

Closed twhite313 closed 1 month ago

twhite313 commented 1 month ago

To avoid repeating box-sizing: border-box and potentially missing some cases, Add global box-sizing rule like we have in AEM.

Add box-sizing: border-box to existing body {} rule Add

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