tangled
alpha
login
or
join now
regnault.dev
/
core
forked from
tangled.org/core
Monorepo for Tangled
0
fork
atom
overview
issues
pulls
pipelines
appview: better defaults for prose
oppi.li
10 months ago
8d2a08af
991d523b
+12
-5
2 changed files
expand all
collapse all
unified
split
appview
pages
templates
repo
issues
issue.html
tailwind.config.js
-3
appview/pages/templates/repo/issues/issue.html
···
62
62
{{ end }}
63
63
64
64
{{ define "newComment" }}
65
65
-
{{ if gt (len .Comments) 0 }}
66
66
-
<div class="absolute left-8 -top-2 w-px h-2 bg-gray-300 dark:bg-gray-600"></div>
67
67
-
{{ end }}
68
65
{{ if .LoggedInUser }}
69
66
<form
70
67
id="comment-form"
+12
-2
tailwind.config.js
···
45
45
},
46
46
"code::before": {
47
47
content: '""',
48
48
-
"padding-left": "0.25rem"
49
48
},
50
49
"code::after": {
51
50
content: '""',
52
52
-
"padding-right": "0.25rem"
53
51
},
54
52
blockquote: {
55
53
quotes: "none",
54
54
+
},
55
55
+
'h1, h2, h3, h4': {
56
56
+
"@apply mt-4 mb-2": {}
57
57
+
},
58
58
+
h1: {
59
59
+
"@apply mt-3 pb-3 border-b border-gray-300 dark:border-gray-600": {}
60
60
+
},
61
61
+
h2: {
62
62
+
"@apply mt-3 pb-3 border-b border-gray-200 dark:border-gray-700": {}
63
63
+
},
64
64
+
h3: {
65
65
+
"@apply mt-2": {}
56
66
},
57
67
},
58
68
},