How can I easily add a shadow in Bootstrap to this div?
<div class="shadow p-3 mb-5 bg-white rounded">Regular shadow</div>
The GetBootstrap documentation explains that:
"While shadows on components are disabled by default in Bootstrap and can be enabled via $enable-shadows"
Where exactly do I need to make this change?
I've searched for answers, but most suggest working with something called scss
and running a build process like npm run build
. This seems like too much hassle for just adding shadows. Is there a simpler way to activate shadows in Bootstrap, maybe using a script tag?
(I'm working with Django and Bootstrap)