Esri / esri-eds

Apache License 2.0
2 stars 0 forks source link

Normalize box-sizing #216

Closed alexcarol closed 3 days ago

alexcarol commented 3 days ago

Migrated from: https://github.com/aemsites/esri/issues/116

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;
}