Closed tamb closed 3 years ago
I made a custom bundle using .scss It's called theme.scss and it looks like this:
.scss
theme.scss
$btn-border-radius: .21rem; $btn-border-radius-lg: .42rem; $btn-border-radius-sm: .21rem; $dropdown-border-radius: .42rem; $blue: #2f86dd; @import "~bootswatch/dist/cosmo/variables"; @import "~bootstrap/scss/bootstrap"; @import "~bootswatch/dist/cosmo/bootswatch";
but the .btn border radius is not changing...
.btn
If I exclude the bootswatch variables then the style is applied...
Hey @tamb, you should set:
$enable-rounded: true;
Worked perfectly! Thank you!
I made a custom bundle using
.scss
It's calledtheme.scss
and it looks like this:but the
.btn
border radius is not changing...If I exclude the bootswatch variables then the style is applied...