Rev 4097 | AutorÃa | Ultima modificación | Ver Log |
.peopleYouMayKnow {
background: $bg-color;
padding: 1rem 0.5rem;
border-radius: $border-radius;
width: 100%;
display: block;
box-shadow: $light-shadow;
border: 1px solid $border-primary;
height: fit-content;
}
.suggestionList {
max-height: 60vh;
overflow: auto;
width: 100%;
}
.viewMore {
margin-top: 1rem;
text-align: center;
a {
font-weight: 500;
color: $font-color;
&:hover {
color: $font-color-hover;
}
}
}
.user {
display: flex;
align-items: center;
padding: 1rem;
gap: 0.5rem;
border-right: 1px solid $border-primary;
justify-content: space-between;
&:last-child {
border-right: none;
}
img {
border-radius: 50%;
max-width: 3.3rem;
background: #fff;
}
div.d-flex {
gap: 0.5rem;
}
h4 {
font-weight: 500;
line-height: 1.4;
}
a.btn,
button.btn {
padding: 0.2rem 0.6rem;
white-space: nowrap;
}
@media (min-width: 768px) {
border-right: none;
border-top: 1px solid $border-primary;
min-width: auto;
}
}