Skip to content

Commit

Permalink
feat(docs-website): no backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
martijnvdbrug committed Nov 26, 2024
1 parent 709d0bf commit c28d063
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions docs-website/src/styles/global.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,17 @@ code {
border-radius: 10px;
}

/* Copy link for headings */
.icon-link:before {
content: '#';
margin-left: 10px;
text-decoration: none;
}
/* Remove backticks or any content before or after code blocks */
.prose code::before,
.prose code::after {
content: none; /* Prevent backticks or any other content from being added */
}

:root {
--astro-code-color-text: theme('colors.white');
Expand Down

0 comments on commit c28d063

Please sign in to comment.