My attempt to remove the padding of a container on smaller screens using a media breakpoint is not yielding the desired result:
@media screen and (max-width: 576px) {
.content-wrapper > .content {
padding: 0;
}
.container, .container-fluid, .container-xl, .container-lg, .container-md, .container-sm {
width: 100%;
padding-right: 0;
padding-left: 0;
}
}
https://i.sstatic.net/jY5j4.png
https://i.sstatic.net/gxn8G.png
Despite my efforts, the padding remains unchanged. What could be the issue here?