Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion ledger_lab/ledger_lab/page/ledger_lab/ledger_lab.js
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,13 @@ class LedgerLab {
var(--card-bg, var(--fg-color)) 58%);
}
.ll-equation::before {
content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px;
content: ""; position: absolute; left: 0; width: 4px;
/* inset by the card radius so the rail stays clear of the
rounded corners instead of poking its square top/bottom
past them (overflow:hidden alone doesn't clip it cleanly) */
top: 14px; bottom: 14px;
background: var(--ll-accent);
border-radius: 0 3px 3px 0;
}
.ll-eq-kicker {
font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
Expand Down
Loading