From 19921701712bdd40bafc58be86963c9009a2e618 Mon Sep 17 00:00:00 2001 From: Aslam H Date: Fri, 18 Oct 2024 23:26:04 +0700 Subject: [PATCH] refactor: import css to app --- web/app/styles/app.css | 1 + web/shared/editor/editor.tsx | 2 -- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/web/app/styles/app.css b/web/app/styles/app.css index 43c6242e..fdb6cbfc 100644 --- a/web/app/styles/app.css +++ b/web/app/styles/app.css @@ -2,6 +2,7 @@ @import "./command-palette.css"; @import "./custom.css"; +@import "../../shared/editor/styles/index.css"; @tailwind base; @tailwind components; diff --git a/web/shared/editor/editor.tsx b/web/shared/editor/editor.tsx index 1fe79ca8..f5ba1123 100644 --- a/web/shared/editor/editor.tsx +++ b/web/shared/editor/editor.tsx @@ -1,6 +1,4 @@ import * as React from "react" -import "./styles/index.css" - import { EditorContent } from "@tiptap/react" import { Content } from "@tiptap/core" import { BubbleMenu } from "./components/bubble-menu"