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 = {