/* Utilities the app uses that the vendored css/theme.css build predates.
 *
 * theme.css is the real compiled Tailwind 4 output, generated by scanning the
 * app source at a point in time. When a ported component's verbatim className
 * references a utility that build missed, the class is kept verbatim in the JSX
 * (CONVENTIONS rule 1) and the rule is supplied here instead of editing the
 * generated artifact.
 *
 * Delete an entry once a regenerated theme.css covers it — the duplicate is
 * harmless (identical declaration) but the list should not outlive its reason.
 *
 * Loaded after theme.css in index.html.
 */

/* Declared in `utilities` so these sort with their peers rather than beating
   the whole layer as unlayered rules would. theme.css opens with
   `@layer theme, base, components, utilities;`, which fixes the order. */
@layer utilities {
  /* DrawerRefLinks — the optical -4px that pulls the LinkedIn/website glyphs
     back toward the name they trail. See drawers.jsx DrawerRefLinks. */
  .-ml-1 {
    margin-left: calc(var(--spacing) * -1);
  }
}
