apps/web: Conditions force calibri font

This commit is contained in:
vchikalkin 2023-11-20 14:15:36 +03:00
parent cec465d935
commit a86f92e35b

View File

@ -4,5 +4,7 @@ type Props = {
};
export function Conditions({ html }: Props) {
return <div dangerouslySetInnerHTML={{ __html: html }} className="justify-center" />;
return (
<div dangerouslySetInnerHTML={{ __html: html }} className="justify-center font-[calibri]" />
);
}