+
+
+ All announcements
+
@@ -81,6 +97,10 @@ import type { Announcement } from "~/composables/use-announcements";
const dialog = defineModel({ default: false });
+const display = useDisplay();
+const useMobile = computed(() => display.smAndDown.value);
+const navOpen = ref(false);
+
const route = useRoute();
watch(() => route.fullPath, () => { dialog.value = false; });
diff --git a/frontend/app/lib/icons/icons.ts b/frontend/app/lib/icons/icons.ts
index dd5a8612a..72db028fe 100644
--- a/frontend/app/lib/icons/icons.ts
+++ b/frontend/app/lib/icons/icons.ts
@@ -37,6 +37,7 @@ import {
mdiChefHat,
mdiChevronDown,
mdiChevronRight,
+ mdiChevronLeft,
mdiClipboardCheck,
mdiClockTimeFourOutline,
mdiClose,
@@ -332,6 +333,7 @@ export const icons = {
slotMachine: mdiSlotMachine,
chevronDown: mdiChevronDown,
chevronRight: mdiChevronRight,
+ chevronLeft: mdiChevronLeft,
// Ocr toolbar
selectMode: mdiSelectionDrag,