Transforms
Utilities for scaling elements using zoom.
| Class | Styles |
|---|---|
zoom-<number> | zoom: <number>%; |
zoom-(<custom-property>) | zoom: var(<custom-property>); |
zoom-[<value>] | zoom: <value>; |
Use zoom-<number> utilities like zoom-75 and zoom-125 to scale an element using the CSS zoom property:
<div class="zoom-75 ..."> <!-- ... --></div><div class="zoom-100 ..."> <!-- ... --></div><div class="zoom-125 ..."> <!-- ... --></div>Use the zoom-[<value>] syntax to set the zoom based on a completely custom value:
<div class="zoom-[1.1] ..."> <!-- ... --></div>For CSS variables, you can also use the zoom-(<custom-property>) syntax:
<div class="zoom-(--my-zoom) ..."> <!-- ... --></div>This is just a shorthand for zoom-[var(<custom-property>)] that adds the var() function for you automatically.
Prefix a zoom utility with a variant like hover:* to only apply the utility in that state:
<div class="zoom-100 hover:zoom-125 ..."> <!-- ... --></div>Learn more about using variants in the variants documentation.
Prefix a zoom utility with a breakpoint variant like md: to only apply the utility at medium screen sizes and above:
<div class="zoom-100 md:zoom-125 ..."> <!-- ... --></div>Learn more about using variants in the variants documentation.
Use the --zoom-* theme variables to customize the zoom utilities in your project:
@theme { --zoom-compact: 80%; }Now the zoom-compact utility can be used in your markup:
<div class="zoom-compact"> <!-- ... --></div>Learn more about customizing your theme in the theme documentation.