Hello, can you please tell me how can we get back to square or less rounded corners.
Hi,
You can disable the rounded corners settings in SASS globally by using the Bootstrap sass variable $enable-rounded: false
in src/sass/components/_variables.custom.scss
.
Also you can reduce the rounded corners using the below variables:
<code lang="scss">
// Border Radiues
$border-radius: .475rem !default;
$border-radius-sm: .425rem !default;
$border-radius-lg: .625rem !default;
$border-radius-xl: 1rem !default;
$border-radius-2xl: 2rem !default;
$border-radius-pill: 50rem !default;
and recompile the assets with gulp or webpack.
Regards.