@@ -82,7 +82,7 @@ defmodule LiveDebuggerWeb.Components.Traces do
8282 phx-value-trace-id = { @ trace . id }
8383 >
8484 <: label >
85- < div id = { @ id <> "-label" } class = "w-[90%] grow flex items-center ml-2 gap-1.5 " >
85+ < div id = { @ id <> "-label" } class = "w-[90%] grow flex items-center ml-2 gap-3 " >
8686 < p class = "font-medium text-sm " > <%= @ callback_name %> </ p >
8787 < . short_trace_content trace = { @ trace } />
8888 < . trace_time_info id = { @ id } trace = { @ trace } from_tracing? = { @ from_tracing? } />
@@ -135,15 +135,15 @@ defmodule LiveDebuggerWeb.Components.Traces do
135135
136136 def trace_time_info ( assigns ) do
137137 ~H"""
138- < div class = "max-w-24 text-xs font-normal text-secondary-text align-center " >
139- < . tooltip id = { @ id <> "-timestamp" } content = "timestamp " >
138+ < div class = "flex text-xs font-normal text-secondary-text align-center " >
139+ < . tooltip id = { @ id <> "-timestamp" } content = "timestamp " class = " min-w-24 " >
140140 <%= Parsers . parse_timestamp ( @ trace . timestamp ) %>
141141 </ . tooltip >
142-
143- < . tooltip id = { @ id <> "-exec-time-tooltip" } content = "execution time " >
142+ < span class = " mx-2 border-r border-default-border " > </ span >
143+ < . tooltip id = { @ id <> "-exec-time-tooltip" } content = "execution time " class = " min-w-11 " >
144144 < span
145145 id = { @ id <> "-exec-time" }
146- class = { get_threshold_class ( @ trace . execution_time ) }
146+ class = { [ "text-nowrap" , get_threshold_class ( @ trace . execution_time ) ] }
147147 phx-hook = { if @ from_tracing? , do: "TraceExecutionTime" }
148148 >
149149 <%= Parsers . parse_elapsed_time ( @ trace . execution_time ) %>
0 commit comments