Rev 2821 | 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%;
background-color: #fff;
border-radius: 10px;
border-bottom: solid 1px var(--border-light-gray);
border-top: solid 1px var(--border-light-gray);
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;
}
}
.shareRowContainer {
display: flex;
align-items: center;
flex-wrap: wrap;
width: 30%;
margin-left: auto;
div {
flex: 1;
}
}
.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;
}
}