Rev 3994 | AutorÃa | Ultima modificación | Ver Log |
.mainSection {
display: block;
}
.feed-section {
display: flex;
flex-direction: column;
gap: 10px;
}
.sectionHeader {
display: flex;
flex-direction: column;
}
.suggestions {
background: $bg-color;
margin-bottom: 1rem;
}
.postsList {
display: flex;
align-items: flex-start;
padding: 1rem;
gap: 0.5rem;
flex-direction: column;
border-right: 1px solid $border-primary;
min-width: 50vw;
h4 {
font-weight: bold;
font-size: 1.1rem;
}
span {
font-size: 0.9rem;
}
img {
width: 100%;
height: 150px;
object-fit: cover;
}
a.btn {
padding: 0.2rem 0.6rem;
}
@include maxwidth("medium") {
border-right: none;
border-top: 1px solid $border-primary;
min-width: auto;
img {
height: 180px;
}
}
}
.suggestionList {
max-height: 30vh;
overflow: auto;
}
.userProfile {
background-color: $bg-color;
padding: 1rem;
position: relative;
border-radius: $border-radius;
border: 1px solid $border-primary;
display: flex;
flex-direction: column;
gap: 0.5rem;
&__header {
display: none;
flex-direction: column;
justify-content: center;
align-items: center;
position: relative;
z-index: 0;
display: flex;
flex-direction: column;
gap: 0.5rem;
&__imgContainer {
width: 100px;
max-height: 100px;
img {
border-radius: 50%;
background: #fff;
}
}
}
&__headerBackground {
display: none;
position: absolute;
height: 60px;
width: 100%;
top: 0;
left: 0;
z-index: 0;
border-radius: 5px 5px 0 0;
}
&__connectionInfo {
display: flex;
justify-content: space-around;
align-items: center;
&__infoContainer {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
flex: 50%;
&__title {
font-size: 0.9rem;
color: $subtitle-color;
}
&__info {
font-size: 0.9rem;
padding: 0 0.3rem;
color: $font-color;
}
}
}
}
.widget {
display: flex;
align-items: center;
justify-content: space-around;
background-color: $bg-color;
padding: 0.5rem;
border-radius: $border-radius;
&__app {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
flex: 100%;
text-align: center;
&__img {
width: 50px;
height: 50px;
border-radius: 50%;
}
&__title {
color: $font-color;
font-size: 0.9rem;
}
}
}
@include maxwidth("medium") {
.mobile_widget {
display: none;
}
.widget {
flex-direction: column;
&__app:not(:first-child) {
margin-top: 0.5rem;
}
}
.sectionHeader {
display: flex;
flex-direction: column;
grid-area: header;
}
.userProfile {
display: block;
&__header {
display: flex;
}
&__headerBackground {
display: block;
}
&__connectionInfo {
flex-direction: column;
&__infoContainer:not(:last-child) {
margin-bottom: 0.5rem;
}
}
}
.suggestions {
display: block;
}
}