$dot-width: 0.625rem;
$dot-height: 0.625rem;
$dot-radius: 50%;

@mixin dot($color) {
    display: inline-block;
    border-radius: $dot-radius;
    height: $dot-height;
    width: $dot-width;
    background-color: $color;
}
