Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5437 | Rev 5440 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 5437 Rev 5438
Línea 106... Línea 106...
106
    img {
106
    img {
107
        width: 50px;
107
        width: 50px;
108
        height: 50px;
108
        height: 50px;
109
        border-radius: 100px;
109
        border-radius: 100px;
110
    }
110
    }
-
 
111
}
-
 
112
 
-
 
113
.posts-widget {
-
 
114
    @include mixins.widget;
-
 
115
    padding: 1rem;
-
 
116
    display: flex;
-
 
117
    flex-direction: column;
-
 
118
    gap: 1rem;
-
 
119
 
-
 
120
    h3 {
-
 
121
        color: $title-color;
-
 
122
        font-size: 1.1rem;
-
 
123
        font-weight: 600;
-
 
124
    }
-
 
125
 
-
 
126
    .posts-list {
-
 
127
        display: flex;
-
 
128
        flex-direction: column;
-
 
129
        gap: 1rem;
-
 
130
        max-height: 400px;
-
 
131
        overflow: auto;
-
 
132
        scroll-snap-type: y mandatory;
-
 
133
    }
-
 
134
 
-
 
135
    .post-item {
-
 
136
        display: flex;
-
 
137
        flex-direction: column;
-
 
138
        gap: .5rem;
-
 
139
        scroll-snap-align: center;
-
 
140
 
-
 
141
        img {
-
 
142
            aspect-ratio: 2/2.2;
-
 
143
            object-fit: cover;
-
 
144
        }
-
 
145
 
-
 
146
        h4 {
-
 
147
            font-weight: 600;
-
 
148
            font-size: 1.2rem;
-
 
149
            color: $subtitle-color;
-
 
150
        }
-
 
151
 
-
 
152
        span {
-
 
153
            color: $font-color;
-
 
154
            font-size: .9rem;
-
 
155
        }
-
 
156
 
-
 
157
        .btn {
-
 
158
            width: fit-content;
-
 
159
        }
-
 
160
    }
111
}
161
}
112
162