From 7bcd2b3a029de92ad2fa545edff2f02a8964ed55 Mon Sep 17 00:00:00 2001 From: thecodrr Date: Thu, 30 Jun 2022 21:43:23 +0500 Subject: [PATCH] chore: update notesnook-editor --- apps/web/src/components/editor/tiptap.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/apps/web/src/components/editor/tiptap.tsx b/apps/web/src/components/editor/tiptap.tsx index d1166493f..392946b5b 100644 --- a/apps/web/src/components/editor/tiptap.tsx +++ b/apps/web/src/components/editor/tiptap.tsx @@ -1,8 +1,10 @@ +import "notesnook-editor/styles/styles.css"; +import "notesnook-editor/styles/katex.min.css"; +import "notesnook-editor/styles/prism-theme.css"; import { Theme } from "@notesnook/theme"; import { useTheme } from "emotion-theming"; import { Toolbar, useTiptap, PortalProvider, Editor } from "notesnook-editor"; import { Box, Flex } from "rebass"; -import "notesnook-editor/dist/styles.css"; import { PropsWithChildren, useEffect, useRef, useState } from "react"; import useMobile from "../../utils/use-mobile"; import { Attachment } from "./picker";