diff --git a/frontend/app/components/Domain/Announcement/AnnouncementDialog.vue b/frontend/app/components/Domain/Announcement/AnnouncementDialog.vue index ce1881209..acb6755b3 100644 --- a/frontend/app/components/Domain/Announcement/AnnouncementDialog.vue +++ b/frontend/app/components/Domain/Announcement/AnnouncementDialog.vue @@ -8,21 +8,22 @@ width="100%" max-width="1200" > -
+
{{ announcement.meta?.title }} @@ -40,7 +41,22 @@ -
+
+ + 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,