Hello, i am trying to change the deafult color of btn with this code in custom.css
.btn-primary {
color: #ffffff;
background-color: #951a1d !important;
border-color: #951a1d !important;
}
.btn-primary:active:hover, .btn-primary.active:hover, .open > .dropdown-toggle.btn-primary:hover, .btn-primary:active:focus, .btn-primary.active:focus, .open > .dropdown-toggle.btn-primary:focus, .btn-primary:active.focus, .btn-primary.active.focus, .open > .dropdown-toggle.btn-primary.focus {
color: #ffffff;
background-color: #860505 !important;
border-color: #c10000;
}
.btn-primary:focus,
.btn-primary.focus {
color: #ffffff;
background-color: #860505 !important;
border-color: #c10000;
}
.btn-primary:hover {
color: #ffffff;
background-color: #860505 !important;
border-color: #7f0404 !important;
}
but when i am doing that the button of sidebar and in mobile take backround color
but with the deafult backround color the button of sidebar and in mobile dont take any backround
So how can i change the backround color of btn without change the button of sidebar?