shakee93 / vue-toasted

🖖 Responsive Touch Compatible Toast plugin for VueJS 2+
https://shakee93.github.io/vue-toasted/
MIT License
2.21k stars 194 forks source link

Wrong font family #121

Closed joni1802 closed 5 years ago

joni1802 commented 5 years ago

Hello,

my Toast is using the default browser font and not the roboto font. I am using this plugin in combination with vuetify. Did anyone have the same problem?

joni1802 commented 5 years ago

My fault. I did not see that vuetify is the problem. It sets the font-family only to the application class not the entire body by default.

betoflakes commented 4 years ago

How did you fix it?

joni1802 commented 4 years ago

I have simply added the necessary css inside the head in the index.html.

<style>
  .toasted {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
  }
</style>