Skip to content

Commit

Permalink
trim down
Browse files Browse the repository at this point in the history
  • Loading branch information
rgbkrk committed Jan 14, 2024
1 parent 6303476 commit dada943
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Cell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ const Cell = ({ cellID }: { cellID: string }) => {
<span className="group-hover:hidden">{executionCount}</span>
]
</Button>
<Editor cellID={cellID} />
<Editor cellID={cellID} className="mr-2" />
{/* <Input
type="text"
placeholder="write code..."
Expand Down
2 changes: 1 addition & 1 deletion src/components/Editor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const Editor = ({ cellID, className }: { cellID: string, className?: stri
});

const classes = cn(
"flex w-full h-full my-2 border border-input bg-transparent text-sm shadow-sm transition-colors file:border-0 file:bg-transparent file:text-sm file:font-medium placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-ring disabled:cursor-not-allowed disabled:opacity-50",
"flex w-full h-full bg-transparent",
className
)

Expand Down

0 comments on commit dada943

Please sign in to comment.