Jacky Zhao
2023-07-07 b3480bdc49120010da8d2805df02cbf84ca08bdc
fix styling for bullet points
2 files modified
6 ■■■■ changed files
quartz/processors/parse.ts 3 ●●●●● patch | view | raw | blame | history
quartz/styles/base.scss 3 ●●●● patch | view | raw | blame | history
quartz/processors/parse.ts
@@ -80,6 +80,9 @@
      try {
        const file = await read(fp)
        // strip leading and trailing whitespace
        file.value = file.value.toString().trim()
        // Text -> Text transforms
        for (const plugin of transformers.filter(p => p.textTransform)) {
          file.value = plugin.textTransform!(file.value)
quartz/styles/base.scss
@@ -71,9 +71,10 @@
      font-size: 2rem;
    }
    & ul:has(input[type='checkbox']) {
    & li:has(> input[type='checkbox']) {
      list-style-type: none;
      padding-left: 0;
      margin-left: -1.4rem;
    }
  }