Skip to content

Commit

Permalink
reduce padding
Browse files Browse the repository at this point in the history
  • Loading branch information
invisal committed Jan 16, 2025
1 parent a8569f7 commit 1d87f81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/extensions/notebook/notebook-block-code.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default function NotebookBlockCode({
};

return (
<div className="flex-1 flex flex-col gap-2">
<div className="flex-1 flex flex-col gap-2 mt-4">
<div className="flex gap-2">
<Button variant={"outline"} onClick={onRunClick}>
<PlayIcon className="w-4 h-4 mr-2" /> Run
Expand Down
2 changes: 1 addition & 1 deletion src/extensions/notebook/notebook-block-md.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default function NotebookBlockCode({
onChange: (value: NotebookEditorBlockValue) => void;
}) {
return (
<div className="p-3 mdx-content">
<div className="mt-4 mdx-content">
<Markdown>{value.value}</Markdown>
</div>
);
Expand Down

0 comments on commit 1d87f81

Please sign in to comment.