Bootstrap 5 Dropdown caret position

Viewed 584

Is it possible in bootstrap 5 to right align the caret in the dropdown-menu items? Moving as per this picture?

enter image description here

1 Answers

Answering my own question. Use another class.

<li><a class="dropdown-item dropdown-toggle first-level-dropdown-toggle" href="#">Clouds</a>
  ...
</li>

And the class

.first-level-dropdown-toggle::after {
  position: absolute;
  left: 80%;
  margin-top: 0.7em;
}

enter image description here

Related