From 2f00897a980f7935e9226f986e79f98eafc2f0e4 Mon Sep 17 00:00:00 2001 From: Jason Axelson Date: Mon, 26 Aug 2024 07:48:21 -0500 Subject: [PATCH] Plug Debugger add spacing between arguments (#1242) * Plug Debugger add spacing between arguments * Also change color to primary (but with partial saturation) --- lib/plug/templates/debugger.html.eex | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/lib/plug/templates/debugger.html.eex b/lib/plug/templates/debugger.html.eex index 5c2be18a..162223ef 100644 --- a/lib/plug/templates/debugger.html.eex +++ b/lib/plug/templates/debugger.html.eex @@ -277,7 +277,8 @@ .frame-info > details.meta > ol > li:before { content: counter(item) ". "; - color: <%= @style.accent %>; + color: <%= @style.primary %>; + filter: saturate(50%); } /* @@ -574,6 +575,10 @@ margin: 0; } + .code-quote > li { + padding: 6px 0; + } + .code.-padded { padding: 0 16px 16px 16px; }