Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 5378 | Autoría | Ultima modificación | Ver Log |

.posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 400px;
    overflow: auto;
    scroll-snap-type: y mandatory;
}

.post-item {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    scroll-snap-align: center;

    img {
        aspect-ratio: 2/2.2;
        object-fit: cover;
    }

    h4 {
        font-weight: 600;
        font-size: 1.2rem;
        color: $subtitle-color;
    }

    span {
        color: $font-color;
        font-size: .9rem;
    }

    .btn {
        width: fit-content;
    }
}