Box shadows are used to make content appear elevated. They are typically applied to containers of content that users need to pay attention to or content that appears on top of (overlapping) other elements on the page (like a pop-over or modal).
Default
Default shadows are mainly used on things that need to appear slightly elevated, like pricing cards or UI elements containing important information.
<divclass="box-shadow p-3">
.box-shadow
</div>
These types of shadows are typically applied to elements with borders, such as the Box component.
<divclass="col-6">
<divclass="Box box-shadow">
<divclass="Box-row">
<h3class="m-0">Organization</h3>
</div>
<divclass="Box-row">
<pclass="mb-0 text-gray">
Taxidermy live-edge mixtape, keytar tumeric locavore meh selvage deep v letterpress vexillologist lo-fi tousled
church-key thundercats. Brooklyn bicycle rights tousled, marfa actually.
</p>
</div>
<divclass="Box-row">
<buttontype="button"name="Create an organization"class="btn btn-primary btn-block">
Create an organization
</button>
</div>
</div>
</div>
Medium
Medium box shadows are more diffused and slightly larger than small box shadows.
<divclass="box-shadow-medium p-3">
.box-shadow-medium
</div>
Medium box shadows are typically used on editorialized content that needs to appear elevated. Most of the time, the elements using this level of shadow will be clickable.