bug #42084 [WebProfilerBundle] Fix the values of some CSS properties (javiereguiluz)

This PR was merged into the 4.4 branch.

Discussion
----------

[WebProfilerBundle] Fix the values of some CSS properties

| Q             | A
| ------------- | ---
| Branch?       | 4.4
| Bug fix?      | yes
| New feature?  | no
| Deprecations? | no
| Tickets       | -
| License       | MIT
| Doc PR        | -

You can check the valid values of these properties at:

* https://developer.mozilla.org/en-US/docs/Web/CSS/max-width
* https://developer.mozilla.org/en-US/docs/Web/CSS/min-height

Commits
-------

e335c28d44 [WebProfilerBundle] Fix the values of some CSS properties
This commit is contained in:
Nicolas Grekas 2021-07-13 11:57:06 +02:00
commit 7269a915f5
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
.container {
max-width: auto;
max-width: none;
margin: 0;
padding: 0;
}
@ -28,5 +28,5 @@
}
.exception-message-wrapper .container {
min-height: auto;
min-height: unset;
}