diff options
| author | Kit La Touche <kit@transneptune.net> | 2024-10-23 21:52:24 -0400 |
|---|---|---|
| committer | Kit La Touche <kit@transneptune.net> | 2024-10-23 21:52:24 -0400 |
| commit | 8f360dd9cc45bb14431238ccc5e3d137c020fa7b (patch) | |
| tree | fcb65190ba06932cdba79b91513e74155aaa912e /ui/lib/store.js | |
| parent | 56e16e29db55dae84549229d24b971f8bcf7da21 (diff) | |
Do a big mobile app design thing
Mobile-friendly anyway. Thanks to
[Miriam](https://www.miriamsuzanne.com/) for the CSS that enables a
sliding menu on mobile size, constant menu on larger.
Diffstat (limited to 'ui/lib/store.js')
| -rw-r--r-- | ui/lib/store.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ui/lib/store.js b/ui/lib/store.js index ae17ffa..bdd3e3b 100644 --- a/ui/lib/store.js +++ b/ui/lib/store.js @@ -3,6 +3,7 @@ import { Channels } from '$lib/store/channels'; import { Messages } from '$lib/store/messages'; import { Logins } from '$lib/store/logins'; +export const showMenu = writable(false); export const currentUser = writable(null); export const logins = writable(new Logins()); export const channelsList = writable(new Channels()); |
