Skip to content

Commit

Permalink
Added margin to snippet modal
Browse files Browse the repository at this point in the history
  • Loading branch information
jordan-dalby committed Oct 28, 2024
1 parent 9300178 commit 8cf5dd9
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion client/src/components/snippets/SnippetModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,9 @@ const SnippetModal: React.FC<SnippetModalProps> = ({
variant="clickable"
showAll={true}
/>
<FullCodeBlock code={snippet.code} language={snippet.language} />
<div className="mb-4">
<FullCodeBlock code={snippet.code} language={snippet.language} />
</div>
</Modal>
);
};
Expand Down

0 comments on commit 8cf5dd9

Please sign in to comment.