diff options
| author | Fuwn <[email protected]> | 2023-10-31 00:10:02 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-10-31 00:10:02 -0700 |
| commit | 12962b307b6562feb6104e41e11f4ddc07809ba6 (patch) | |
| tree | 8e09741a7e7d2b9951f75734a3a3c0122f03fae9 /src/stores/settings.ts | |
| parent | refactor(badges): use http methods (diff) | |
| download | due.moe-12962b307b6562feb6104e41e11f4ddc07809ba6.tar.xz due.moe-12962b307b6562feb6104e41e11f4ddc07809ba6.zip | |
feat(layout): small navigation
Diffstat (limited to 'src/stores/settings.ts')
| -rw-r--r-- | src/stores/settings.ts | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 5ffae4f5..85d137d5 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -16,6 +16,7 @@ export interface Settings { limitListHeight: boolean; displaySocialButton: boolean; disableGuessing: boolean; + hoverNavigation: boolean; } const defaultSettings: Settings = { @@ -32,7 +33,8 @@ const defaultSettings: Settings = { displayPausedMedia: true, limitListHeight: false, displaySocialButton: false, - disableGuessing: false + disableGuessing: false, + hoverNavigation: false }; const createStore = () => { |