Skip to content

Commit 324551a

Browse files
committed
fix extra spacing
1 parent 708e241 commit 324551a

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

libs/remix-ui/debugger-ui/src/lib/debug-layout/debug-layout.css

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
.debug-section-object {
3333
flex: 1;
34-
min-height: 300px;
34+
min-height: 200px;
3535
display: flex;
3636
flex-direction: column;
3737
overflow: hidden;
@@ -71,11 +71,13 @@
7171

7272
.debug-section-content {
7373
padding: 1rem;
74+
padding-bottom: 0;
7475
}
7576

7677
.debug-section-trace .debug-section-content {
7778
padding-left: 0;
7879
padding-right: 0.5rem;
80+
padding-bottom: 0;
7981
}
8082

8183
.debug-section-scrollable {
@@ -120,6 +122,7 @@
120122
color: var(--bs-body-color);
121123
background-color: var(--custom-onsurface-layer-1);
122124
padding: 0.75rem;
125+
padding-bottom: 0;
123126
border-radius: 0.25rem;
124127
margin: 0;
125128
white-space: pre-wrap;
@@ -349,6 +352,7 @@
349352
font-family: 'Courier New', monospace;
350353
line-height: 1.6;
351354
padding: 0.75rem;
355+
padding-bottom: 0;
352356
word-wrap: break-word;
353357
word-break: break-word;
354358
overflow-wrap: break-word;

libs/remix-ui/debugger-ui/src/lib/debugger-ui.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -698,7 +698,7 @@ export const DebuggerUI = (props: DebuggerUIProps) => {
698698
</span>
699699
)
700700
return (
701-
<div>
701+
<div style={{ height: '100%' }}>
702702
<Toaster message={state.toastMessage} />
703703
{!state.debugging && (
704704
<div className="px-2 pb-3 pt-3" ref={debuggerTopRef}>

0 commit comments

Comments
 (0)