Created
March 17, 2025 21:35
-
-
Save jtsilverio/064d39d9603af31b7d7251994d85c868 to your computer and use it in GitHub Desktop.
obsidian list paddin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :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