Describe the bug; what happened?
Using an instance of fast-button web component and assigning a class or element style css changes to font-size, font-weight and font have no effect. Because the <button/> element in the shadow DOM default styling is still being set.
fast-button {
font-size: 30px;
font-weight: bold;
}
<fast-button>Button</fast-button>
.button {
font-size: 30px;
font-weight: bold;
}
<fast-button class="button">Button</fast-button>

@eljefe223 probably a couple ways to tackle this. The issue here is how it鈥檚 set by the UA styling. Did you want to grab this or can we tag this as a good first issue?
@chrisdholt lets tag as a good first issue, if we don't see traction on in a few days I can grab it.
@chrisdholt can I pick this up?
@abhishekjakhar yes please!
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.
Any news on this. Or a temp fix?