diff --git a/lib/pages/creature-page.tsx b/lib/pages/creature-page.tsx index 88b5478..1dcfc70 100644 --- a/lib/pages/creature-page.tsx +++ b/lib/pages/creature-page.tsx @@ -171,11 +171,24 @@ type AttachmentTransformProps = { const AttachmentTransform: React.FC = (props) => ( + {/** + * We originally used "transform-origin" here but that's not currently + * supported by Safari. Instead, we'll set the origin of our symbol to + * the transform origin, do the transform, and then move our origin back to + * the original origin, which is equivalent to setting "transform-origin". + **/} - {props.children} + + + {props.children} + + );