sindresorhus / generate-github-markdown-css

Generate the CSS for github-markdown-css
MIT License
380 stars 77 forks source link

Fix `--base-size-4` variable is missing #32

Closed rhysd closed 3 months ago

rhysd commented 3 months ago

--base-size-4 variable is used in the style for task lists:

.markdown-body .task-list-item+.task-list-item {
  margin-top: var(--base-size-4);
}

but the variable is not defined. This PR fixes the issue.