diff --git a/dev-dist/sw.js b/dev-dist/sw.js index 8806e80..0400897 100644 --- a/dev-dist/sw.js +++ b/dev-dist/sw.js @@ -82,7 +82,7 @@ define(['./workbox-47da91e0'], (function (workbox) { 'use strict'; "revision": "3ca0b8505b4bec776b69afdba2768812" }, { "url": "/index.html", - "revision": "0.umqqd7sqgfg" + "revision": "0.rkgg11egm7o" }], { "ignoreURLParametersMatching": [/^utm_/, /^fbclid$/] }); diff --git a/src/components/notes/NoteEditor.tsx b/src/components/notes/NoteEditor.tsx index e3d343a..ecd906a 100644 --- a/src/components/notes/NoteEditor.tsx +++ b/src/components/notes/NoteEditor.tsx @@ -1087,7 +1087,12 @@ export const NoteEditor: React.FC = ({ onSave }) => { type="checkbox" checked={isPrivate} onChange={(e) => setIsPrivate(e.target.checked)} - style={{ width: "18px", height: "18px", cursor: "pointer" }} + style={{ + width: "18px", + height: "18px", + cursor: "pointer", + accentColor: "var(--accent-color, #007bff)", + }} /> Приватная заметка diff --git a/src/components/notes/NoteItem.tsx b/src/components/notes/NoteItem.tsx index 6cfef4c..10a0e4d 100644 --- a/src/components/notes/NoteItem.tsx +++ b/src/components/notes/NoteItem.tsx @@ -1566,7 +1566,12 @@ export const NoteItem: React.FC = ({ type="checkbox" checked={editIsPrivate} onChange={(e) => setEditIsPrivate(e.target.checked)} - style={{ width: "18px", height: "18px", cursor: "pointer" }} + style={{ + width: "18px", + height: "18px", + cursor: "pointer", + accentColor: "var(--accent-color, #007bff)", + }} />