8000 bug #42084 [WebProfilerBundle] Fix the values of some CSS properties … · alexpott/symfony@7269a91 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7269a91

Browse files
bug symfony#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 ------- e335c28 [WebProfilerBundle] Fix the values of some CSS properties
2 parents 02c30ea + e335c28 commit 7269a91

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Symfony/Bundle/WebProfilerBundle/Resources/views/Collector/exception.css.twig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.container {
2-
max-width: auto;
2+
max-width: none;
33
margin: 0;
44
padding: 0;
55
}
@@ -28,5 +28,5 @@
2828
}
2929

3030
.exception-message-wrapper .container {
31-
min-height: auto;
31+
min-height: unset;
3232
}

0 commit comments

Comments
 (0)
0