--- title: "Move Elements on Axes | @adjust" description: "Apply translation transforms to move elements on X, Y, Z axes." keywords: ["transform", "translate", "move", "positioned"] --- # Move Elements on Axes Apply translation transforms to move elements on X, Y, Z axes. Usage: - `@adjust move-*;` - `@adjust move-3d-*;` - `@adjust move-x-*;` - `@adjust move-y-*;` - `@adjust move-z-*;` This page contains only the **property configuration reference**. Complete documentation and usage examples will be added progressively in future updates. ---
## Reference ```js title="shilp.config.js" const shilpConfig = { source: "react", properties: { adjust: { move: { DEFAULT: { property: "--mv: translate(, );", resolve: "spacing", themeKey: "spacing", values: {}, }, "3d": { property: "--mv: translate3d(, , );", resolve: "spacing", themeKey: "spacing", values: {}, }, x: { property: "--mv-x: translateX();", resolve: "spacing", themeKey: "spacing", values: {}, }, y: { property: "--mv-y: translateY();", resolve: "spacing", themeKey: "spacing", values: {}, }, z: { property: "--mv-z: translateZ();", resolve: "spacing", themeKey: "spacing", values: {}, }, }, }, }, }; export default shilpConfig; ```