From bbc2e27498004095689aca61d637e7894cc0b3de Mon Sep 17 00:00:00 2001 From: filtered <176114999+webfiltered@users.noreply.github.com> Date: Sun, 14 Sep 2025 00:36:40 +1000 Subject: [PATCH] Fix gap property - use rem value instead of Tailwind class --- src/views/DesktopDialogView.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/views/DesktopDialogView.vue b/src/views/DesktopDialogView.vue index 7f4a00ffb..9d4537c99 100644 --- a/src/views/DesktopDialogView.vue +++ b/src/views/DesktopDialogView.vue @@ -29,7 +29,7 @@ const message = computed(() => (route.query.message as string) || '') width: 100%; height: 100%; background: #2d2d2d; - gap: 24px; + gap: 1.5rem; /* 24px - equivalent to gap-6 */ } .dialog-title {