Line Spacing in Numbered Lists

Hi Everyone
How can I match line spacing in Numbered Lists?

I managed to solve it.
Here is the code if anyone needs it

ol {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
ol li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
ul {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
ul li {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.