aboutsummaryrefslogtreecommitdiff
path: root/less
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2013-08-12 21:26:43 -0700
committerMark Otto <[email protected]>2013-08-12 21:26:43 -0700
commit40723c8716d79e5f27791caa2da5787151a6ee6b (patch)
treed3bf1ad16bc3f5bc51ead345dde2385bffecce95 /less
parent0b338b0dc76fa3cf321c9a509e892bad41fd626b (diff)
downloadbootstrap-40723c8716d79e5f27791caa2da5787151a6ee6b.tar.xz
bootstrap-40723c8716d79e5f27791caa2da5787151a6ee6b.zip
fixes #9400: add box-sizing to pseudo elements as well
Diffstat (limited to 'less')
-rw-r--r--less/scaffolding.less4
1 files changed, 3 insertions, 1 deletions
diff --git a/less/scaffolding.less b/less/scaffolding.less
index 5c7b5bb84..0c1774e28 100644
--- a/less/scaffolding.less
+++ b/less/scaffolding.less
@@ -6,7 +6,9 @@
// Reset the box-sizing
// -------------------------
-* {
+*,
+*:before,
+*:after {
.box-sizing(border-box);
}