mirror of
https://github.com/maximebf/php-debugbar.git
synced 2025-07-13 04:46:30 +02:00
Reset box-sizing
By default, Bootstrap3 applies `box-sizing: border-box;` to every element. This doesn't work well for some controls, so reset it to content-box. See https://github.com/barryvdh/laravel-debugbar/issues/26
This commit is contained in:
@ -12,6 +12,10 @@ div.phpdebugbar {
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
div.phpdebugbar * {
|
||||
box-sizing: content-box;
|
||||
}
|
||||
|
||||
/* -------------------------------------- */
|
||||
|
||||
div.phpdebugbar-header {
|
||||
|
Reference in New Issue
Block a user