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

(cherry picked from commit eeb976e)
  • Loading branch information
jhchen authored and dmitry.levkovskiy committed Mar 25, 2021
1 parent c092cd3 commit e61d5c1
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 e61d5c1

Please sign in to comment.