Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3747 | Rev 5443 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

.shareFeed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 36px;
  gap: 22px;
  width: 100%;
  height: 100%;
  max-height: 130px;
  background-color: $bg-color;
  border-radius: 5px;
  box-shadow: $shadow;
  border-top: 1px solid $border-primary;
  border-bottom: 1px solid $border-primary;
}

.formContainer {
  display: flex;
  width: 100%;
  gap: 5px;
}

.shareRowContainer {
  display: flex;
  align-items: center;
  gap: 5px;
}

.shareImage {
  width: 25%;
}

.shareIcon {
  font-size: 1.1rem;
}

.userInputContainer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  width: 75%;
  img {
    border-radius: 100px;
    width: 43px;
    height: 43px;
    object-fit: cover;
    background-color: #fff;
  }
  input {
    background-color: $bg-color !important;
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0;
  }
}

.shareIconContainer {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  .shareIcon {
    color: $icons-color;
  }
  &:hover {
    background: $font-color;
    border-radius: 10px;
    .shareIcon {
      color: $bg-color;
    }
  }
}

.iconActive {
  border-radius: 10px;
  background: $font-color;
  .shareIcon {
    color: $bg-color;
    transform: rotate(45deg);
    transition: all 0.2s;
  }
  &:hover {
    background: $font-color;
    .shareIcon {
      color: $bg-color;
      transform: rotate(0);
    }
  }
}