The rule "Remove the margin on nested lists in Chrome, Edge, and Safari" appears in both normalize.css and opinionated.css:
|
/** |
|
* Remove the margin on nested lists in Chrome, Edge, and Safari. |
|
*/ |
|
|
|
:where(dl, ol, ul) :where(dl, ol, ul) { |
|
margin-block-end: 0; |
|
margin-block-start: 0; |
|
} |
|
/** |
|
* Remove the margin on nested lists in Chrome, Edge, and Safari. |
|
*/ |
|
|
|
:where(dl, ol, ul) :where(dl, ol, ul) { |
|
margin-block-end: 0; |
|
margin-block-start: 0; |
|
} |
Since Chromium and WebKit already have that rule in their UA stylesheets, I think it can be removed.
The rule "Remove the margin on nested lists in Chrome, Edge, and Safari" appears in both normalize.css and opinionated.css:
normalize.css/normalize.css
Lines 32 to 39 in 0774d10
normalize.css/opinionated.css
Lines 40 to 47 in 0774d10
Since Chromium and WebKit already have that rule in their UA stylesheets, I think it can be removed.