Skip to content

Commit

Permalink
style : css 파일 줄 위치 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
redzzzi committed May 23, 2024
1 parent d4d5c44 commit 0ece0de
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/Editor/StandardEditor.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ import React from 'react';
import { useMediaQuery, useTheme } from '@mui/material';
import codeSyntaxHighlight from '@toast-ui/editor-plugin-code-syntax-highlight';
import { Editor, EditorProps } from '@toast-ui/react-editor';
import Prism from 'prismjs';
import './prismLang';

import '@toast-ui/editor/dist/toastui-editor.css';
import '@toast-ui/editor/dist/theme/toastui-editor-dark.css';
import Prism from 'prismjs';
import 'prismjs/themes/prism-tomorrow.css';
import './prismLang';

interface StandardEditorProps extends EditorProps {
forwardedRef?: React.MutableRefObject<Editor>;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Viewer/StandardViewer.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React, { useEffect, useRef } from 'react';
import codeSyntaxHighlight from '@toast-ui/editor-plugin-code-syntax-highlight';
import { Viewer } from '@toast-ui/react-editor';
import Prism from 'prismjs';

import '@toast-ui/editor/dist/toastui-editor-viewer.css';
import '@toast-ui/editor-plugin-code-syntax-highlight/dist/toastui-editor-plugin-code-syntax-highlight.css';
import Prism from 'prismjs';
import 'prismjs/themes/prism-tomorrow.css';

interface StandardViewerProps {
Expand Down

0 comments on commit 0ece0de

Please sign in to comment.