| 1 | --- |
| 2 | relates: |
| 3 | - guide/faq#adjust-size |
| 4 | - features/canvas-size |
| 5 | - features/zoom-slide |
| 6 | tags: [layout] |
| 7 | description: | |
| 8 | A component for scaling some elements. |
| 9 | --- |
| 10 | |
| 11 | # The `Transform` Component |
| 12 | |
| 13 | The `Transform` component allows you to scale the size of the elements on your slides: |
| 14 | |
| 15 | ```md |
| 16 | <Transform :scale="0.5" origin="top center"> |
| 17 | <YourElements /> |
| 18 | </Transform> |
| 19 | ``` |
| 20 | |
| 21 | This is useful when you want to adjust the size of some elements on your slides without affecting the layout of the entire slide. |
| 22 | |
| 23 | To scale all the slides in your presentation, you can set the slide canvas size: |
| 24 | |
| 25 | <LinkCard link="features/canvas-size" /> |
| 26 | |
| 27 | To scale several slides in your presentation, you can use the `zoom` option: |
| 28 | |
| 29 | <LinkCard link="features/zoom-slide" /> |
| 30 |