Explorar o código

feat: re-order zoom buttons (#3837)

* feat: re-order zoom buttons

* undo last commit & change zoomOut/zoomIn order
David Luzar %!s(int64=4) %!d(string=hai) anos
pai
achega
b2c4552416
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      src/components/Actions.tsx

+ 1 - 1
src/components/Actions.tsx

@@ -204,8 +204,8 @@ export const ZoomActions = ({
 }) => (
   <Stack.Col gap={1}>
     <Stack.Row gap={1} align="center">
-      {renderAction("zoomIn")}
       {renderAction("zoomOut")}
+      {renderAction("zoomIn")}
       {renderAction("resetZoom")}
     </Stack.Row>
   </Stack.Col>