.changelog-bullet {
    animation: bullet-pulse 2s linear infinite;
    font-size: 8px;
}


@keyframes bullet-pulse {
    0% {
        transform: scale(0.8);
    }
    50% {
        transform: scale(1.5);
    }
    100% {
        transform: scale(0.8);
    }
}