|
@@ -5,17 +5,7 @@ import dynamic from "next/dynamic";
|
|
|
|
|
|
const Editor = dynamic(() => import("src/containers/Editor"), { ssr: false });
|
|
|
|
|
|
-const StyledEditorWrapper = styled.div`
|
|
|
- *::-webkit-scrollbar {
|
|
|
- width: 8px;
|
|
|
- background: ${({ theme }) => theme.BLACK_SECONDARY};
|
|
|
- }
|
|
|
-
|
|
|
- *::-webkit-scrollbar-thumb {
|
|
|
- border-radius: 5px;
|
|
|
- background-color: ${({ theme }) => theme.SILVER_DARK};
|
|
|
- }
|
|
|
-`;
|
|
|
+const StyledEditorWrapper = styled.div``;
|
|
|
|
|
|
const EditorPage: React.FC = () => {
|
|
|
return (
|