i created a Login.Razor.css file in the same folder as my Login Comp , but the css is not applying att all even after calling in in the header link in HTML of Login .
Any idea on how to solve this .
2
There is no Issue here other than a missing Capital L in the import of the login css .
To make blazor isolation work, you need to add the following <link> element:
<link>
<link href="{ASSEMBLY NAME}.styles.css" rel="stylesheet">
For more information, you can read the article and this question
Click here to cancel reply.
2
Answers
There is no Issue here other than a missing Capital L in the import of the login css .
To make blazor isolation work, you need to add the following
<link>
element:For more information, you can read the article and this question