Skip to content

Commit 5848f95

Browse files
committed
fix: remove old inline styles from HTML template generation
1 parent e42c194 commit 5848f95

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

packages/pranx/src/build/generate_html_template.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,7 @@ export const generate_html_template = ({
1818
${page_prerendered
1919
.replace(
2020
META_TAG,
21-
`
22-
<style>
23-
span[role=link] {
24-
cursor:pointer;
25-
}
26-
</style>
27-
${css.map((css_path) => `<link rel="stylesheet" href="${css_path}" />`).join("\n")}`
21+
`${css.map((css_path) => `<link rel="stylesheet" href="${css_path}" />`).join("\n")}`
2822
)
2923
.replace(
3024
SCRIPTS_TAG,

0 commit comments

Comments
 (0)