Justineo / vue-awesome

Awesome SVG icon component for Vue.js, built-in with Font Awesome icons.

Home Page:https://justineo.github.io/vue-awesome/demo/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Color prop is not being respected

RyanPayso13 opened this issue · comments

I am having an issue converting my icons to white color.

The following code is working fine in dev server but not in production where I deploy to Netlify.

The code is as follows:

    <div class="flex justify-center mt-8">
      <a class="mr-4" href="https://github.com/RyanPayso13">
        <v-icon color="white" name="brands/github" scale="6" />
      </a>
      <a href="https://www.facebook.com/ryan.pays">
        <v-icon color="white" name="brands/facebook" scale="6" />
      </a>
      <a class="ml-4" href="/doc/ryan-pays-cv.pdf" target="_blank">
        <v-icon color="white" name="file-pdf" scale="6" />
      </a>
    </div>

And the code deployed to production is here:

http://www.ryanpays.com

Can you please help me as to what is wrong?