From 25e148714876128838cd1e56255a9dd92d336dd0 Mon Sep 17 00:00:00 2001 From: Greg Shuflin Date: Sat, 23 Nov 2024 16:48:06 -0800 Subject: [PATCH] Correct css setup --- notes/index.html | 32 -------------------------------- notes/src/main.tsx | 1 + 2 files changed, 1 insertion(+), 32 deletions(-) diff --git a/notes/index.html b/notes/index.html index 3b9116e..46e96ce 100644 --- a/notes/index.html +++ b/notes/index.html @@ -3,7 +3,6 @@ - Notes @@ -11,37 +10,6 @@ -
-

Welcome to Tauri

- - -

Click on the Tauri logo to learn more about the framework

- -
- - -
-

-
- diff --git a/notes/src/main.tsx b/notes/src/main.tsx index e6ee85c..c452aad 100644 --- a/notes/src/main.tsx +++ b/notes/src/main.tsx @@ -6,6 +6,7 @@ import ReactDOM from "react-dom/client"; import Quill from 'quill'; import "quill/dist/quill.core.css"; +import "quill/dist/quill.snow.css"; const quill = new Quill("#editor", { theme: "snow" }); console.log("Quill", quill);