Skip to content

Commit

Permalink
padding fix
Browse files Browse the repository at this point in the history
  • Loading branch information
LukaszMMazur committed Apr 2, 2024
1 parent ac5c0de commit fc0ec59
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions components/Tracer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ export const DebugInfoConsole = () => {
<div className="border-gray-200 border-t dark:border-black-500 flex-none h-[22vh]">
<div className=" h-full flex flex-col md:flex-row">
<div
className={`h-full w-1/2 border-r border-gray-200 dark:border-black-500 pt-3 p-2 overflow-auto pane pane-light ${
className={`h-full w-1/2 border-r border-gray-200 dark:border-black-500 pt-3 pl-2 overflow-auto pane pane-light ${
isThreeColumnLayout ? 'w-2/3' : 'w-1/2'
}`}
>
Expand All @@ -222,7 +222,7 @@ export const DebugInfoConsole = () => {
</div>

<div
className={`h-full overflow-auto pane pane-light pt-3 p-2 ${
className={`h-full overflow-auto pane pane-light pt-3 ${
isThreeColumnLayout ? 'w-1/3' : 'w-1/2'
}`}
>
Expand Down

0 comments on commit fc0ec59

Please sign in to comment.