Skip to content

Instantly share code, notes, and snippets.

@jtsilverio
Created March 17, 2025 21:35
Show Gist options
  • Select an option

  • Save jtsilverio/064d39d9603af31b7d7251994d85c868 to your computer and use it in GitHub Desktop.

Select an option

Save jtsilverio/064d39d9603af31b7d7251994d85c868 to your computer and use it in GitHub Desktop.
obsidian list paddin
:root {
--list-item-spacing-top: 0.2em;
--list-item-spacing-bottom: 0.2em;
}
/* reading mode */
:is(ul, ol) li {
padding-top: var(--list-item-spacing-top) !important;
padding-bottom: var(--list-item-spacing-bottom) !important;
&:last-child {
margin-bottom: unset;
}
}
/* edit mode */
.HyperMD-list-line {
padding-top: var(--list-item-spacing-top) !important;
padding-bottom: var(--list-item-spacing-bottom) !important;
&:last-child {
padding-bottom: unset !important;
}
}
.HyperMD-list-line-1 {
padding-top: 2em !important;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment