0%
April 25, 2025

Recover Bullet-Points and Ordered List Overriden by Tailwind

react

tailwind

In index.css simply add

ul {
  list-style-type: disc;
  padding-left: 2rem;
}

ul li {
  margin-bottom: 0.25rem;
}

ol {
  list-style-type: decimal;
  margin-top: 1em;
  margin-bottom: 1em;
  padding-left: 2rem;
}