@import "/UI/Styles/styles.scss";

VoiceChatList {
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;

    .entry {
        .avatar {
            width: 75px;
            height: 75px;
            border-radius: 10px;
            border: 2px solid black;
            background-repeat: no-repeat;
            background-size: contain;
        }

        i {
            position: absolute;
            transform: translate(100%, 100%);
            color: $text-primary-color;
            font-size: 48px;
            text-stroke: 5px black;
        }
    }
}
