forked from tangled.org/core
this repo has no description

appview: better defaults for prose

Changed files
+12 -5
appview
pages
templates
repo
issues
-3
appview/pages/templates/repo/issues/issue.html
··· 62 {{ end }} 63 64 {{ define "newComment" }} 65 - {{ if gt (len .Comments) 0 }} 66 - <div class="absolute left-8 -top-2 w-px h-2 bg-gray-300 dark:bg-gray-600"></div> 67 - {{ end }} 68 {{ if .LoggedInUser }} 69 <form 70 id="comment-form"
··· 62 {{ end }} 63 64 {{ define "newComment" }} 65 {{ if .LoggedInUser }} 66 <form 67 id="comment-form"
+12 -2
tailwind.config.js
··· 45 }, 46 "code::before": { 47 content: '""', 48 - "padding-left": "0.25rem" 49 }, 50 "code::after": { 51 content: '""', 52 - "padding-right": "0.25rem" 53 }, 54 blockquote: { 55 quotes: "none", 56 }, 57 }, 58 },
··· 45 }, 46 "code::before": { 47 content: '""', 48 }, 49 "code::after": { 50 content: '""', 51 }, 52 blockquote: { 53 quotes: "none", 54 + }, 55 + 'h1, h2, h3, h4': { 56 + "@apply mt-4 mb-2": {} 57 + }, 58 + h1: { 59 + "@apply mt-3 pb-3 border-b border-gray-300 dark:border-gray-600": {} 60 + }, 61 + h2: { 62 + "@apply mt-3 pb-3 border-b border-gray-200 dark:border-gray-700": {} 63 + }, 64 + h3: { 65 + "@apply mt-2": {} 66 }, 67 }, 68 },