Skip to content

Commit

Permalink
fix: rounding right corners at docs modal
Browse files Browse the repository at this point in the history
  • Loading branch information
Tedzury committed Dec 23, 2023
1 parent c61371d commit 6f79d65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/DocsComp/ui/DocsModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ const DocsModal = ({ setIsDocsShown, explorer }: PropsType) => {
/>
);
return (
<section className="relative z-20 h-[100dvh] w-[420px] cursor-auto bg-surface p-3">
<section className="relative z-20 h-[100dvh] w-[420px] cursor-auto rounded-r-[28px] bg-surface p-3">
<CloseDocsBtn
onClick={() => {
setIsDocsShown((prev) => !prev);
Expand Down

0 comments on commit 6f79d65

Please sign in to comment.