In my scss
file, I currently have the following styling:
.nav-pills .nav-link, .nav-pills .show > .nav-link {
background: linear-gradient(120deg, #ddd 65%, #eee 65%);
}
.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
background: linear-gradient(120deg, #48bfe3 65%, #85d4ec 65%);
}
Now I am looking to add classes for the same style, but with a white background. How can I achieve this?