8000 [DX] [TwigBundle] Enhance the new exception page design by sustmi · Pull Request #22439 · symfony/symfony · GitHub
[go: up one dir, main page]

Skip to content

[DX] [TwigBundle] Enhance the new exception page design #22439

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 8 commits into from
Prev Previous commit
Next Next commit
do not wrap long lines
  • Loading branch information
sustmi committed Jun 4, 2017
commit 2c947f2a12e5b3a55ac51ac6333962d9e2afa74a
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ header .container { display: flex; justify-content: space-between; }
.trace-method { color: #B0413E; color: #222; font-weight: bold; color: #B0413E; }
.trace-arguments { color: #222; color: #999; font-weight: normal; color: #795da3; color: #777; padding-left: 2px; }

.trace-code { background: #FFF; font-size: 12px; margin: 10px 10px 2px 10px; padding: 10px; overflow-x: auto; }
.trace-code { background: #FFF; font-size: 12px; margin: 10px 10px 2px 10px; padding: 10px; overflow-x: auto; white-space: nowrap; }
.trace-code ol { margin: 0; float: left; }
.trace-code li { color: #969896; margin: 0; padding-left: 10px; float: left; width: 100%; }
.trace-code li + li { margin-top: 5px; }
Expand Down
0