seleccion-articulos.component.scss 579 Bytes
$primary: #aa006b;

.box-categorias {
  height: calc(100% - 100px) !important;
}

.active {
  background-color: white;
  border-bottom: 3px solid $primary !important;
}

.border-bottom-effect {
  border: none;
  position: relative;
  &:hover {
    border: none;
  }
  &::after {
    content: "";
    position: absolute;
    width: 0px;
    height: 3px;
    left: 50%;
    bottom: 0;
    background-color: $primary;
    transition: all ease-in-out 0.2s;
  }
  &:hover::after {
    width: 100%;
    left: 0;
  }
}

.card {
  border: none;
}

.line-height-sm {
  line-height: 1.2;
}