The type of MicroCMS variables for inserting <style> tags is not specified.
MicroCMSの<style>タグ挿入用変数の型は指定されていない
src/blog/[id].tsx and src/pages/links.tsx
const cmsstyle = `
<style>
h2 {
font-size: 1.5rem;
margin-top: 2rem;
margin-bottom: 1rem;
font-weight: bold;
}
h3 {
font-size: 1.3rem;
margin-top: 1.2rem;
margin-bottom: 0.7rem;
}
pre {
line-height: 1.4;
overflow-x: scroll;
}
pre::before {
content: "→ scroll →";
display: block;
height: 5vh;
}
code {
font-family: 'Courier New', Courier, monospace;
}
</style>
`;