+2
-2
appview/pages/templates/repo/issues/issue.html
+2
-2
appview/pages/templates/repo/issues/issue.html
···
36
</div>
37
38
{{ if .Issue.Body }}
39
+
<article id="body" class="mt-8 prose dark:prose-invert">
40
{{ .Issue.Body | markdown }}
41
</article>
42
{{ end }}
···
76
{{ .Created | timeFmt }}
77
</a>
78
</div>
79
+
<div class="prose dark:prose-invert">
80
{{ .Body | markdown }}
81
</div>
82
</div>
+11
-1
tailwind.config.js
+11
-1
tailwind.config.js
···
1
/** @type {import('tailwindcss').Config} */
2
-
const colors = require('tailwindcss/colors')
3
4
module.exports = {
5
content: ["./appview/pages/templates/**/*.html"],
6
theme: {
7
container: {
8
padding: "2rem",
···
21
mono: ["iA Writer Mono S", "ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", "monospace"],
22
},
23
typography: {
24
DEFAULT: {
25
css: {
26
maxWidth: 'none',
···
1
/** @type {import('tailwindcss').Config} */
2
+
const colors = require("tailwindcss/colors");
3
4
module.exports = {
5
content: ["./appview/pages/templates/**/*.html"],
6
+
darkMode: "media",
7
theme: {
8
container: {
9
padding: "2rem",
···
22
mono: ["iA Writer Mono S", "ui-monospace", "SFMono-Regular", "Menlo", "Monaco", "Consolas", "Liberation Mono", "Courier New", "monospace"],
23
},
24
typography: {
25
+
dark: {
26
+
css: {
27
+
maxWidth: 'none',
28
+
pre: {
29
+
backgroundColor: colors.gray[900],
30
+
color: colors.white,
31
+
},
32
+
},
33
+
},
34
DEFAULT: {
35
css: {
36
maxWidth: 'none',