diff --git a/.changeset/fair-balloons-shake.md b/.changeset/fair-balloons-shake.md new file mode 100644 index 0000000..787db5a --- /dev/null +++ b/.changeset/fair-balloons-shake.md @@ -0,0 +1,5 @@ +--- +'anki-templates': patch +--- + +fix(all): remove max-width of prose (移除 prose 的 max-width) diff --git a/src/components/card-shell.tsx b/src/components/card-shell.tsx index dfef12d..f4e204d 100644 --- a/src/components/card-shell.tsx +++ b/src/components/card-shell.tsx @@ -49,7 +49,7 @@ export const CardShell: FC = ({ return ( diff --git a/src/global.css b/src/global.css index 540f65b..ba61370 100644 --- a/src/global.css +++ b/src/global.css @@ -26,3 +26,7 @@ body { .anki-field::-webkit-scrollbar { scrollbar-width: none; } + +.prose { + @apply !max-w-none; +}