fix: remove font-sans class override — restore Fira Sans #6
Reference in New Issue
Block a user
Delete Branch "fix/font-wrong-class-override"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Nemos previous fix accidentally added className=font-sans to body which is a Tailwind utility that sets font-family: ui-sans-serif overriding globals.css. Removed all className and variable injection — CSS handles fonts directly via @import + body rule.
✅ Correct fix. font-sans Tailwind class was clobbering globals.css body rule. Removing it lets CSS @layer base take effect properly. LGTM 🐠