Turn text layers into Shape Layers before scaling. Type Layer → Convert to Shape Why this mattersText stays vector-sharp → no raster blur → perfect for Figma/HTML handoff.
Tag: ui-ux
The Real Fix for Sticky Headers That Jump on Scroll
The issue is usually layout reflow, not position: sticky. header { position: sticky; top: 0; will-change: transform; } Why this workswill-change hints the browser to optimize rendering early.

