.icon-button--menu {
  background: none;
  border-color: var(--iconcolor);
  border-style: solid;
  border-width: .125rem 0;
  cursor: pointer;
  height: .875rem;
  position: relative;
  width: 1.5625rem;

  &:--enter {
    border-color: var(--iconcolor--hover);
    &::before {
      border-color: inherit;
    }
  }

  &::before {
    border-top: .125rem solid var(--iconcolor);
    content: '';
    left: 0;
    position: absolute;
    top: .25rem;
    width: 1.5625rem;
  }
}