Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/web/src/components/Builders/Shared/CodeSnippet.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ export function CodeSnippet({ code }: { code: string }) {

return (
<div
className="code-snippet h-full overflow-auto rounded-lg transition-colors"
className="code-snippet h-full overflow-auto rounded-lg transition-colors ligatures-none"
// eslint-disable-next-line react/no-danger -- necessary for shiki
dangerouslySetInnerHTML={htmlContent}
/>
Expand Down
3 changes: 3 additions & 0 deletions apps/web/tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,9 @@ module.exports = {
'.scrollbar-gutter-stable': {
'scrollbar-gutter': 'stable',
},
'.ligatures-none': {
'font-variant-ligatures': 'none',
},
});
},
],
Expand Down