Rev 3964 | Rev 5667 | Ir a la última revisión | Autoría | Comparar con el anterior | Ultima modificación | Ver Log |
.postContainer {
display: flex;
background-color: $bg-color;
box-shadow: $shadow;
padding: 1rem;
flex-direction: column;
border-top: 1px solid $border-primary;
border-bottom: 1px solid $border-primary;
gap: 1rem;
}
.feedCommentContainer {
display: flex;
justify-content: flex-start;
align-items: center;
gap: 10px;
& > img {
border-radius: 100px;
width: 43px;
height: 43px;
object-fit: cover;
background: #fff;
}
.commentInput {
margin: 0;
flex: 1;
padding: 0.5rem 0;
border: none;
font-size: 1rem;
background-color: $bg-color;
}
.submitButton {
height: 2.5rem;
margin: 0;
width: auto;
margin-top: 0.5rem;
background-color: $button-bg;
border: none;
padding: 0.5rem 1rem;
color: $bg-color;
border-radius: var(--global-border-radius);
border: 1px solid $button-bg;
font-size: 1rem;
transition: 0.2s;
&:hover {
background-color: $button-bg-hover;
}
}
}