mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-10-27 00:04:23 -04:00
fix: Don't open the sidebar drawer by default on medium screens (#6107)
This commit is contained in:
@@ -43,7 +43,7 @@ const { $globals } = useNuxtApp();
|
||||
|
||||
const sidebar = ref<boolean>(false);
|
||||
onMounted(() => {
|
||||
sidebar.value = !display.md.value;
|
||||
sidebar.value = display.lgAndUp.value;
|
||||
});
|
||||
|
||||
const topLinks: SidebarLinks = [
|
||||
|
||||
Reference in New Issue
Block a user