Bullet list layout desktop and mobile view
.bullet {
display: flex;
flex-wrap: wrap;
}
.bullet li {
flex: 1;
}
@media only screen and (max-width: 768px) {
.bullet {
flex-direction: column;
}
.bullet li {
flex: 0 30%;
align-self: baseline;
text-align: left;
} align-self: baseline;
}
}