Skip to content

Commit c655532

Browse files
committed
fix: rtl extetnal arrow
1 parent 29c50a0 commit c655532

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/DocLink.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const DocLink = ({ href, children, isExternal = false }: DocLinkProps) => {
4242
"transition-transform duration-100 group-hover:scale-[1.2] group-hover:fill-primary",
4343
isExternal ? "-rotate-45" : "rotate-0",
4444
isRtl && isExternal ? "-rotate-[135deg]" : "",
45-
isRtl ? "-rotate-[180deg]" : ""
45+
isRtl && !isExternal ? "-rotate-[180deg]" : ""
4646
)}
4747
/>
4848
</Flex>

0 commit comments

Comments
 (0)