Compare commits

...

1 Commits

Author SHA1 Message Date
Jamison Lahman
5e23065a93 fix(fe): fix Text padding with wrapping 2026-02-12 16:14:56 -08:00

View File

@@ -200,7 +200,12 @@ export default function Text({
className
)}
>
{children}
{/* NOTE: We want a small, horizontal padding applied to text components to visually
complement the white-space implicit with line-height. We apply it internally such that
padding applied to the tag directly is additive making the likelihood of 2px offsets with
other text elements much lower.
*/}
<span className="px-[2px] box-decoration-clone">{children}</span>
</Tag>
);
}