JSFiddle - React, Tailwind, and code Playground
HTML
<p>
Hello there
</p>
CSS
:root {
--font-family: 'Georgia';
}
html {
font-family: sans-serif;
font-family: var(--font-family), 'sans-serif';
}
<p>
Hello there
</p>
:root {
--font-family: 'Georgia';
}
html {
font-family: sans-serif;
font-family: var(--font-family), 'sans-serif';
}