Skip to content

Commit

Permalink
Fix: スタイル調整下地
Browse files Browse the repository at this point in the history
  • Loading branch information
su-u committed Sep 22, 2023
1 parent c1d0b8d commit a21d1ba
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/components/pages/diff/DiffEditor.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import React from 'react';
import styled from '@emotion/styled';
import { DiffEditor as MonacoDiffEditor, DiffEditorProps } from '@monaco-editor/react';

export const DiffEditor: React.FC<DiffEditorProps> = (props) => {
return <MonacoDiffEditor height="80vh" theme="vs-dark" {...props} />;
return (
<StyledWrapper>
<MonacoDiffEditor className="diff-editor" height="80vh" theme="vs-dark" {...props} />
</StyledWrapper>);
};

const StyledWrapper = styled.div``;

1 comment on commit a21d1ba

@vercel
Copy link

@vercel vercel bot commented on a21d1ba Sep 22, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

tools-su-u-dev – ./

tools-su-u-dev-su-u.vercel.app
tools-su-u-dev.vercel.app
tools-su-u-dev-git-main-su-u.vercel.app
tools.su-u.dev

Please sign in to comment.