in my index.razor i have written
<SfButton Content="Modal" CssClass="mibtnclas"></SfButton>
in app.css i have
.mibtnclas{
color: red;
}
html, body {
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
a, .btn-link {
color: #0366d6;
}
......
this is not working, but if i put a style in the index.razor this works
<style>
.mibtnclas{
color: blue;
}
</style>
I would like to have this class globally, how can i do it?.