Is it possible to create some sort of component scoped CSS file for multiple components without duplicating it? Is there any naming convention?
Lets assume there are three components which all use the same tags but a style should only be applied for components of naming scheme ComponentA . Other components should not be affected.
ComponentA_A.razor
ComponentA_B.razor
ComponentOther.razor
having
ComponentA.razor.css
instead of
ComponentA_A.razor.css
ComponentA_B.razor.css
If duplication is the only way, is it possible to use some kind of referencing in css file itself or referencing a specific css file in blazor component?