Proyectos de Subversion LeadersLinked - Backend

Rev

Rev 16741 | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |

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

.share_feed {
  @include mixin.widget;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: .5rem;
  width: 100%;

  input {
    border: none;
    box-shadow: none;
    outline: none;
    padding: 0 0.75rem;
    background-color: transparent;
  }

}

.share_options {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0.5rem;
  width: 100%;

  button svg {
    fill: $icons-color;
    width: 1rem;
    height: 1rem;
    transition: all 200ms ease;
  }

  button:hover svg {
    fill: $font-color;
  }
}