.root {
}

.list {
  @apply flex flex-row items-center;
}

.item {
  @apply mr-6 cursor-pointer relative transition ease-in-out duration-100 text-primary;

  &:hover {
    @apply text-secondary;
  }

  &:last-child {
    @apply mr-0;
  }
}