how to change the body's border radius in Bootstrap

Viewed 4552
2 Answers

Add this class to your custom css:

.rounded-xl {
  border-radius: 1.5rem;
}

and use it on your <row> elements in place of the usual bootstrap border class.

Example

<div class="row rounded-xl">
<div>
Related