@mixin restyle-dropdown($theme) {
  .dropdown-menu {
    animation: none;
    border-radius: $custom-corner-rounding;
    background: map-get($theme, dropdown-background);

    > li {
      > a {
        color: map-get($theme, dropdown-foreground);

        &:hover {
          background-color: map-get($theme, dropdown-select);
          color: map-get($theme, dropdown-foreground);
          border: none;
        }
      }
    }
  }
}
