I'm trying to apply background-color property to my Vue.js application. Since I want it to be displayed on all pages, I'm applying CSS directly to tag in index.html:
<head>
<style>
body, html {
  padding: 0;
  margin: 0;
  width: 100%;
}
body {
  background-color: black;
}
</style>
</head>
 <body>
   <div id="app"></div>
   <!-- built files will be auto injected -->
 </body>
So, as I see through the inspector, html doesn't cover the whole page
How to apply background-color to the whole page?
 
     
    