JSFiddle - React, Tailwind, and code Playground

HTML

<ul>
    <li>Пункт 1</li>
    <li>Пункт 2</li>
    <li>Пункт 3</li>
</ul>

CSS

ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: table;
}

ul li {
  display: table-cell;
  padding: 0.625em 1.250em;
  background: #67342B;
  color: #EAAB85;
  position: relative;
  cursor: pointer;
  font-family: Tahoma, sans-serif;
}

li:before {
  position: absolute;
  top: 50%;
  margin-top: -0.625em;
  left: -0.188em;
  content: "\2022";
}

li:last-child:after {
  position: absolute;
  top: 50%;
  margin-top: -0.625em;
  right: -0.188em;
  content: "\2022";
}

ul li:hover {
  background: #BC2330;
}