Skip to content

Commit

Permalink
Merge pull request slab#3272 from luin/firefox-bullet
Browse files Browse the repository at this point in the history
Header/paragraph doesn't reset list numbering in Firefox
  • Loading branch information
jhchen committed Jan 22, 2021
2 parents 54d6141 + 93416e5 commit eeb976e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion assets/core.styl
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ resets(arr)
margin: 0
padding: 0
p, h1, h2, h3, h4, h5, h6
counter-reset: resets(0..MAX_INDENT)
@supports (counter-set: none)
counter-set: resets(0..MAX_INDENT)
@supports not (counter-set: none)
counter-reset: resets(0..MAX_INDENT)
table
border-collapse: collapse
td
Expand Down

0 comments on commit eeb976e

Please sign in to comment.