Commit 40723c87 authored by Mark Otto's avatar Mark Otto

fixes #9400: add box-sizing to pseudo elements as well

parent 0b338b0d
......@@ -286,7 +286,9 @@ table {
}
}
* {
*,
*:before,
*:after {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
......
This source diff could not be displayed because it is too large. You can view the blob instead.
......@@ -6,7 +6,9 @@
// Reset the box-sizing
// -------------------------
* {
*,
*:before,
*:after {
.box-sizing(border-box);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment