Here's the situation. I was making a blog using next.js. also, I used styled-reset.
However, I missed the most important part. Convert markdown to html and render. The styles of the converted tags are all reset.
I want to keep the style of the markdown file.
Is there any way?
In other words, is there a way not to be affected by the global style specified by one component?
// global-style.ts
export const GlobalStyle = createGlobalStyle`
${reset}
* {
box-sizing: border-box;
}
a {
cursor: pointer;
text-decoration: none;
color: black;
}
`
It is too inefficient to specify
echatspin the tags needed for markdown one by one.