I would like to remove the margins from my site so I don't get the scroll bars, but I can't, I've tried margin 0 and padding 0, but it still didn't work.
my code:
<template>
<div>
</div>
</template>
<style>
#app {
font-family: Avenir, Helvetica, Arial, sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
color: #2c3e50;
height: 100vh;
width: 100vw;
background-color: blue;
margin: 0;
padding: 0;
}
</style>