0👍
Try
* {
font-size: 62.5% !important;
color: #777 !important;
}
If there is no other !important styles that should do the trick
- [Vuejs]-JS Pricebreak Calculator. Find Array value from qty
- [Vuejs]-BootstrapVue control columns number in form group
0👍
It would be better if you give a class to your body tag and apply your style to a class rather than applying directly to an element tag.
Or even better if you set a main div under body tag, give it a class and style that instead:
// app.vue
<template>
<div id="app">
<div class="bodyContainer">
//Content
</div>
</div>
</template>
// main.scss
.bodyContainer {
font-size: 62.5%;
color: #777;
}
- [Vuejs]-Dropzone Image Upload Dynamic URL
- [Vuejs]-How do I check the health of vue router system?, may be something is missing
Source:stackexchange.com