@import 'src/styles/colors'; .content { ul { list-style: none; /* Remove default bullets */ } ul li::before { content: "\2022"; /* Add content: \2022 is the CSS Code/unicode for a bullet */ color: $primary-color-main; font-weight: bold; display: inline-block; width: 20px; margin-left: -20px; } li { margin-left: -14px; margin-bottom: 10px; font-size: 18px; } b { font-size: 16px; } }