gecko-dev/browser/components/newtab/content-src/styles/_normalize.scss
Shane Hughes 9dc143a25a Bug 1619842 - Migrate from sass-lint to stylelint. r=omc-reviewers,thecount,emcminn
Fix a bug where VS Code's eslint integration does not work for the
newtab project because of a conflict caused by sass-lint's eslint
dependency. Switching over to stylelint eliminates that dependency and
generally modernizes our SCSS linting. stylelint doesn't have a 1 to 1
replacement for every sass-lint rule, so a few rules have been changed.

Differential Revision: https://phabricator.services.mozilla.com/D173605
2023-05-09 15:37:15 +00:00

29 lines
352 B
SCSS

html {
box-sizing: border-box;
}
*,
*::before,
*::after {
box-sizing: inherit;
}
*::-moz-focus-inner {
border: 0;
}
body {
margin: 0;
}
button,
input {
background-color: inherit;
color: inherit;
font-family: inherit;
font-size: inherit;
}
[hidden] {
display: none !important; // stylelint-disable-line declaration-no-important
}