In my Vuejs project, I am designing a bootstrap navbar that has left and right margin spacing, even though I have not added any body or html padding.
When I navigate to the welcome.blade.php file and set the body and html padding to 0 as shown below:
*{
padding: 0!important;
}
As a result, the right and left space on my bootstrap navbar disappears, but unfortunately, the space between elements within the navbar also disappears.
My goal is to set the HTML and body padding to 0 without impacting the padding/margins of the bootstrap elements.