- Created `openspec-ff-change` skill for fast-forward artifact creation. - Introduced `openspec-new-change` skill for structured change creation. - Developed `openspec-onboard` skill for guided onboarding through OpenSpec workflow. - Added `openspec-sync-specs` skill for syncing delta specs to main specs. - Implemented `openspec-verify-change` skill for verifying implementation against change artifacts. - Updated `.gitignore` to exclude OpenSpec generated files. - Added `skills-lock.json` to manage skill dependencies.
1.8 KiB
1.8 KiB
name, description
| name | description |
|---|---|
| transform-scale | Scaling elements uniformly or on specific axes with percentage values |
Scale
Utilities for scaling elements.
Usage
Uniform scaling
Use scale-<number> to scale on both axes (number represents percentage):
<div class="scale-75">75% size</div>
<div class="scale-100">100% size (default)</div>
<div class="scale-125">125% size</div>
<div class="scale-150">150% size</div>
Axis-specific scaling
Use scale-x-<number> or scale-y-<number> to scale on one axis:
<div class="scale-x-75">75% width</div>
<div class="scale-y-125">125% height</div>
Negative scaling
Use negative values to mirror and scale:
<div class="-scale-x-100">Mirrored horizontally</div>
<div class="-scale-y-100">Mirrored vertically</div>
<div class="-scale-100">Mirrored both axes</div>
Hover effects
Common pattern for interactive scaling:
<div class="scale-95 hover:scale-100 transition-transform">
Grows on hover
</div>
Removing scale
Use scale-none to remove scaling:
<div class="scale-125 md:scale-none">Scaled on mobile only</div>
Custom values
Use arbitrary values for custom scaling:
<div class="scale-[1.7]">Custom scale value</div>
<div class="scale-x-[0.8]">Custom x-axis scale</div>
Key Points
scale-*scales uniformly on both axesscale-x-*scales horizontally onlyscale-y-*scales vertically only- Values represent percentages:
scale-75= 75%,scale-125= 125% scale-100is the default (no scaling)- Negative values mirror the element:
-scale-x-100flips horizontally - Common for hover effects:
hover:scale-110,active:scale-95 - Use
scale-noneto remove all scaling