Skip to content

Commit 73b6d27

Browse files
committed
css: add left padding on code cells to clear the splitter rule
Line-number column was touching the splitter divider with no breathing room. Bump .code-section padding-left from 8px to 16px so the code reads as a separate column rather than welded to the rule.
1 parent e786f3f commit 73b6d27

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

walkthrough-overrides.css

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,9 @@ body.wt-ready .file-block {
203203
.file-grid > .code-section {
204204
border: 0 !important;
205205
background: var(--code-bg) !important;
206-
padding-left: 8px;
206+
/* Breathing room between the splitter rule and the line-number
207+
* column so the code doesn't read as "welded to the divider". */
208+
padding-left: 16px;
207209
}
208210

209211
/* ── Section beats ─────────────────────────────────────────────────

0 commit comments

Comments
 (0)