Navbar rework, several CSS fixes, Markdown preferences

This commit is contained in:
2025-02-01 10:58:52 +01:00
parent 8fc1855ae6
commit af317cb0e3
15 changed files with 240 additions and 211 deletions

15
types/general.d.ts vendored Normal file
View File

@@ -0,0 +1,15 @@
export type Preferences = {
markdown: MarkdownPreferences,
canvas: CanvasPreferences,
} & GeneralPreferences;
type GeneralPreferences = {
};
type MarkdownPreferences = {
editing: 'split' |'reading' | 'editing';
};
type CanvasPreferences = {
snap: boolean;
size?: number;
};