[Vuejs]-Some CSS, worked well in dev, does not work in build version

0👍

Open Dev Tools and see where the style applied to the h1 tag is declared.

Check if the style has been overwritten.

Try as follows:

h1 {
   font-size:2.6em !important;
   font-weight:bold !important;
   color: #848381 !important;
}

Leave a comment