@layer components {
.plus-button {
  --plus-button-color: var(--black);
  --size: 22px;
  text-decoration: none;
  color: var(--plus-button-color);
  outline: 0;
  padding: 0;
  height: var(--size);
  width: var(--size);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  outline: 1px solid;

  &:hover {
    background: var(--plus-button-color);
    color: white;
  }
}
}
