playcanvas / pcui

UI component library for web-based tools
http://playcanvas.github.io/pcui
MIT License
669 stars 65 forks source link

Fix `Button` font when adding to body element #235

Closed willeastcott closed 1 year ago

willeastcott commented 1 year ago

The Button CSS was inheriting font-family from the parent element, in this case document.body. This was the default font and was overriding the font-regular font specified by pcui-element here. If the button is a child of any other PCUI element, the bug would not occur.

Fixes #233