I am struggling with adding padding to the sidebar using bootstrap-vue. When I attempt to add padding in the browser devtools, it works perfectly fine. However, when trying to implement the same code, it doesn't reflect on the actual webpage.
I tried giving it a custom class, but ended up applying it to the main tag with class "b-sidebar-outer" instead of "b-sidebar", which didn't solve my issue.
If I specify the class as precisely as possible:
.b-sidebar {
padding: 10px;
}
Unfortunately, this method also does not work as expected.
I could manually add padding to each element inside the sidebar, but that would require a significant amount of additional work. Can anyone provide guidance or assistance?