From a50e8a206a1960760ee9bc8f41cb7569710ac86c Mon Sep 17 00:00:00 2001 From: Konstantinos Kaloutas Date: Wed, 31 Aug 2022 16:26:42 +0300 Subject: [PATCH] fix: zoom menu labels --- .../src/components/ZoomMenu/ZoomMenu.tsx | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/tldraw/apps/tldraw-logseq/src/components/ZoomMenu/ZoomMenu.tsx b/tldraw/apps/tldraw-logseq/src/components/ZoomMenu/ZoomMenu.tsx index 736dc6587..611cdae02 100644 --- a/tldraw/apps/tldraw-logseq/src/components/ZoomMenu/ZoomMenu.tsx +++ b/tldraw/apps/tldraw-logseq/src/components/ZoomMenu/ZoomMenu.tsx @@ -24,14 +24,15 @@ export const ZoomMenu = observer(function ZoomMenu(): JSX.Element { onSelect={preventEvent} onClick={app.api.zoomToFit} > - Zoom to Fit
+ Zoom to fit +
- Zoom to Selection{' '} + Zoom to selection
{MOD_KEY} - @@ -43,7 +44,7 @@ export const ZoomMenu = observer(function ZoomMenu(): JSX.Element { onSelect={preventEvent} onClick={app.api.zoomIn} > - Zoom In{' '} + Zoom in
{MOD_KEY} + @@ -55,7 +56,7 @@ export const ZoomMenu = observer(function ZoomMenu(): JSX.Element { onSelect={preventEvent} onClick={app.api.zoomOut} > - Zoom Out{' '} + Zoom out
{MOD_KEY} - @@ -67,7 +68,7 @@ export const ZoomMenu = observer(function ZoomMenu(): JSX.Element { onSelect={preventEvent} onClick={app.api.resetZoom} > - Reset Zoom{' '} + Reset zoom
0