Rev 3956 | Rev 5443 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
@use "../../settings/mixins.scss";
.share-feed {
@include mixins.widget;
display: flex;
flex-direction: column;
padding: 1rem;
gap: 1rem;
width: 100%;
max-height: 130px;
}
.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);
}
}
}