@import "base";

.more-button {
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 10px;
  position: relative;
  flex-shrink: 0;

  &:hover {
    .more-button__dropdown {
      visibility: visible;
      transition-delay: 0ms;
    }
  }

  &__dropdown {
    z-index: 1;
    font-size: 14px;
    position: absolute;
    visibility: hidden;
    transition: visibility 0s;
    transition-delay: 300ms;
    left: 150%;
    top: 0;
    color: black;
    width: 200px;
    box-shadow: 0 1px 5px 1px #888888;
    padding: 3px;
    background-color: color(white);
  }

  &__option {
    @extend %link;
    padding: 2px;
  }
}
