From 3e93114dbe73926b939c922636be33ef831f4397 Mon Sep 17 00:00:00 2001 From: N48LL <58626061+thisisvv@users.noreply.github.com> Date: Mon, 4 May 2026 21:30:10 +0200 Subject: [PATCH 1/5] feat: adjust modals for responsive design with isMobile check --- app/components/editor/IconBrowserCustom.vue | 5 ++++- app/components/editor/IconBrowserIconify.vue | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/app/components/editor/IconBrowserCustom.vue b/app/components/editor/IconBrowserCustom.vue index a53df4b..7291a27 100644 --- a/app/components/editor/IconBrowserCustom.vue +++ b/app/components/editor/IconBrowserCustom.vue @@ -9,6 +9,8 @@ const emit = defineEmits<{ const open = defineModel('open', { default: false }) +const isMobile = useMediaQuery('(max-width: 768px)') + const toast = useToast() const searchQuery = ref('') const selectedIcon = ref('') @@ -66,7 +68,8 @@ async function deleteIcon(filename: string) {