Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 14866 | Autoría | Ultima modificación | Ver Log |

@import "../../css/shared/variables.scss";
@import "../../css/shared/breakpoints.scss";

.shareFeed {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 36px;
  gap: 22px;
  width: 100%;
  height: 100%;
  max-height: 130px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 4px 35px rgba(0, 0, 0, 0.12);
}

.formContainer {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 5px;
  input {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
    padding: 0 0.75rem;
    background-color: $white !important;
  }
}

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

.shareImage {
  width: 25%;
}

.shareIcon {
  font-size: 1.1rem;
}

.userInputContainer {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  img {
    border-radius: 100px;
    width: 43px;
    height: 43px;
    object-fit: cover;
  }
}

.shareIconContainer {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  .shareIcon {
    color: #666666;
  }
  &:hover {
    background: #16283c;
    border-radius: 10px;
    .shareIcon {
      color: #ffffff;
    }
  }
}

.iconActive {
  border-radius: 10px;
  background: #16283c;
  .shareIcon {
    color: #ffffff;
  }
}