Merge branch 'master' into themesfixes

pull/5069/head
Liana Husikyan 4 months ago committed by GitHub
commit 622723042a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 1
      libs/remix-ui/debugger-ui/src/lib/debugger-ui.css
  2. 3
      libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx

@ -20,6 +20,7 @@
.debuggerPanels { .debuggerPanels {
overflow-y: auto; overflow-y: auto;
height: fit-content; height: fit-content;
} }
.jumpToFunctionClick span { .jumpToFunctionClick span {
cursor: pointer; cursor: pointer;

@ -400,7 +400,7 @@ export const DebuggerUI = (props: DebuggerUIProps) => {
return ( return (
<div> <div>
<Toaster message={state.toastMessage} /> <Toaster message={state.toastMessage} />
<div className="px-2" ref={debuggerTopRef}> <div className="px-2 pb-3" ref={debuggerTopRef}>
<div> <div>
<div className="mt-2 mb-2 debuggerConfig custom-control custom-checkbox"> <div className="mt-2 mb-2 debuggerConfig custom-control custom-checkbox">
<CustomTooltip tooltipId="debuggerGenSourceCheckbox" tooltipText={<FormattedMessage id="debugger.debugWithGeneratedSources" />} placement="bottom-start"> <CustomTooltip tooltipId="debuggerGenSourceCheckbox" tooltipText={<FormattedMessage id="debugger.debugWithGeneratedSources" />} placement="bottom-start">
@ -471,6 +471,7 @@ export const DebuggerUI = (props: DebuggerUIProps) => {
currentTransaction={state.currentTransaction} currentTransaction={state.currentTransaction}
/> />
)} )}
<div id="bottomSpacer" className="p-1 mt-3"></div>
</div> </div>
</div> </div>
) )

Loading…
Cancel
Save