/* list-object */
.tweet {
    margin: 0;
    padding: 2rem 1rem;
    border-bottom:
        var(--bs-border-width)
        var(--bs-border-style)
        var(--bs-border-color);
}
.tweet-text {
    margin: 0;padding:0;
    font-size: 1.125rem;
    white-space: pre-wrap;
}
.tweet-imgs {
    padding: 1rem;
    display: flex;
    justify-content: center;
    gap: 5px;
}
.tweet-link {
    display: 'block';
    flex: 1 1 0;
    min-width: 0;
    max-width: 150px;
}
.tweet-img {
    min-width: 0;
    width: 100%;
    max-width: 150px;
    height: auto;
}
.tweet-time {
    display: flex;
    justify-content: end;
    margin:0;
}


