Skip to content

Commit dff29e7

Browse files
committed
Add box-sizing for Mozilla
As described in barryvdh/laravel-debugbar#76
1 parent 8b8fb7a commit dff29e7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/DebugBar/Resources/debugbar.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ div.phpdebugbar-closed {
1717
}
1818

1919
div.phpdebugbar * {
20-
box-sizing: content-box;
20+
21+
-moz-box-sizing: content-box;
22+
box-sizing: content-box;
2123
}
2224

2325
/* -------------------------------------- */

0 commit comments

Comments
 (0)