DEV Community

Stanislav Vranic
Stanislav Vranic

Posted on

1 1

<li> dots

ul {
    list-style: none;
    padding-left: 35px;

    li {
      position: relative;

      &:before {
        content: "";
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0;
        height: 10px;
        width: 10px;
        margin-left: -35px;
        background-color: @primary-color;
        border-radius: 50%;
      }
    }
  }

Top comments (0)