diff --git a/frontend/app/components/shared/DevTools/ConsoleRow/ConsoleRow.tsx b/frontend/app/components/shared/DevTools/ConsoleRow/ConsoleRow.tsx index 8e24e4c7b..145f14640 100644 --- a/frontend/app/components/shared/DevTools/ConsoleRow/ConsoleRow.tsx +++ b/frontend/app/components/shared/DevTools/ConsoleRow/ConsoleRow.tsx @@ -32,7 +32,7 @@ function ConsoleRow(props: Props) { info: !log.isYellow() && !log.isRed(), warn: log.isYellow(), error: log.isRed(), - 'cursor-pointer': clickable, + 'cursor-pointer underline decoration-dotted decoration-gray-200': clickable, } )} onClick={ diff --git a/frontend/app/components/shared/DevTools/JumpButton/JumpButton.tsx b/frontend/app/components/shared/DevTools/JumpButton/JumpButton.tsx index 82c319a49..c52b0cffd 100644 --- a/frontend/app/components/shared/DevTools/JumpButton/JumpButton.tsx +++ b/frontend/app/components/shared/DevTools/JumpButton/JumpButton.tsx @@ -8,18 +8,20 @@ interface Props { function JumpButton(props: Props) { const { tooltip = '' } = props; return ( - -
{ - e.stopPropagation(); - props.onClick(); - }} - > - - JUMP -
-
+
+ +
{ + e.stopPropagation(); + props.onClick(); + }} + > + + JUMP +
+
+
); }