From 28d85ecae3acc0e0af5c4e32f776de0e48570193 Mon Sep 17 00:00:00 2001 From: Eduard Gert Date: Mon, 15 Jun 2026 16:27:44 +0200 Subject: [PATCH] adjust offset on macos --- client/ui/frontend/src/components/empty-state/EmptyState.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ui/frontend/src/components/empty-state/EmptyState.tsx b/client/ui/frontend/src/components/empty-state/EmptyState.tsx index 4384b0c18..add890bd2 100644 --- a/client/ui/frontend/src/components/empty-state/EmptyState.tsx +++ b/client/ui/frontend/src/components/empty-state/EmptyState.tsx @@ -5,7 +5,7 @@ import { SquareIcon } from "@/components/SquareIcon"; import { isMacOS } from "@/lib/platform"; // Knob to shift the centered main-window content up/down together. -export const contentVerticalOffset = (): string => (isMacOS() ? "0rem" : "-1.4rem"); +export const contentVerticalOffset = (): string => (isMacOS() ? "0.6rem" : "-1.4rem"); export const contentTop = (base: string) => `calc(${base} + ${contentVerticalOffset()})`; type Props = {