'Css to Syntactically Awesome Style Sheets

so I 'am trying to pick up a bit of Sass for an upcoming project and the first style I always add is this snippet. But I can't figure out a way to do the same in Sass the * tag doesn't seem to do anything and trying to add those properties to the body or html tag doesn't solve my issue of having those small white gaps between the elements and the html tag. Any advice or suggestions are greatly appreciated thanks.

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

Quick edit added an example photo.enter image description here



Solution 1:[1]

are you "watching" the sass file to a css file?

in terminal: sass --watch style.scss style.css

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 user19160216