fix(ui-shell): remove Content left margin if SideNav is collapsed (#1428)

Fixes #1145
Alternative to #1406
This commit is contained in:
metonym 2022-08-06 08:27:45 -07:00 committed by GitHub
commit fd42cb3891
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 12 additions and 3 deletions

View file

@ -1,3 +1,5 @@
import { writable } from "svelte/store";
export const shouldRenderHamburgerMenu = writable(false);
export const isSideNavCollapsed = writable(false);