Skip to main content

Toast message title font weight fixed to Regular (WEB-1052)

Version: 0.4.5 ยท Type: ๐Ÿ› Bug Fix

WEB-1052

Problemโ€‹

The Toast message-form title was rendered with font-semibold (SemiBold / 600). The Figma spec requires Regular (400) โ€” confirmed via Figma API on node 21220:3470 (fontWeight: 400).

Changed Filesโ€‹

  • packages/design/src/components/Toast/styles.ts

Changesโ€‹

Added explicit font-normal to TOAST_TITLE_CLASS (base class shared by Message form). The prior commit removed font-semibold but left the weight implicit; this makes the declaration self-contained regardless of ancestor styles.

The Alert form title is unaffected: it keeps font-semibold via TOAST_TITLE_ALERT_CLASS (node 21220:3504, fontWeight: 600).