Skip to content
This repository was archived by the owner on Dec 17, 2024. It is now read-only.

Commit 9400b0d

Browse files
committed
fix for repl shifting a bit to the left when the sidecar opens
Fixes #846
1 parent 07d8450 commit 9400b0d

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

app/content/css/ui.css

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -189,22 +189,15 @@ body.still-loading .repl {
189189
.repl.sidecar-visible .repl-block {
190190
background: transparent;
191191
}
192-
body:not(.subwindow) repl.sidecar-visible {
193-
border-left: none;
194-
border-right: none;
195-
border-bottom: none;
196-
}
197192
.repl-block {
198193
margin: 0em 1.8125em;
199194
padding: 0.5em 0;
200195
display: flex;
201196
flex-direction: column;
202197
}
203198
body:not(.subwindow) repl.sidecar-visible .repl-block, body.sidecar-full-screen repl .repl-block {
204-
margin-top: 0;
205199
border-color: transparent;
206200
box-shadow: none;
207-
margin: 0 1.5em;
208201
}
209202
.repl, .repl input {
210203
font-family: var(--font-monospace);
@@ -232,6 +225,12 @@ body:not(.subwindow) repl.sidecar-visible .repl-block, body.sidecar-full-screen
232225
text-overflow: ellipsis;
233226
white-space: nowrap;
234227
}
228+
.repl.sidecar-visible .result-table .repl-result {
229+
width: 100%;
230+
}
231+
.repl .result-table .repl-result {
232+
min-width: 40%;
233+
}
235234
.repl-prompt {
236235
font-weight: bold;
237236
margin-right: 1ex;

0 commit comments

Comments
 (0)