skip to Main Content

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 .

enter image description here

Any idea on how to solve this .

2

Answers


  1. Chosen as BEST ANSWER

    There is no Issue here other than a missing Capital L in the import of the login css .


  2. To make blazor isolation work, you need to add the following <link> element:

    <link href="{ASSEMBLY NAME}.styles.css" rel="stylesheet">
    

    For more information, you can read the article and this question

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search