Closed shravanv90 closed 2 years ago
Hello @shravanv90 Our internal version is compatible with boostrap 5, but this version (in this repo) is not yet compatible with bootstrap 5. You should wait it's update or fix yourself the errors.
Here, a link to help you: https://getbootstrap.com/docs/5.1/migration/
The mixin hover-focus
does not exists anymore in bootstrap 5.
To fix it, replace @include hover-focus { ... }
by &:hover, &:focus, &:active { ... }
. &:active
is optional.
E.g:
@include hover-focus {
background-color: darken(lightgrey, 10%);
color: black;
}
become
&:hover, &:focus, &:active {
background-color: darken(lightgrey, 10%);
color: black;
}
Beware, as directional names have changed, layout will be breaked. margin: ml- and mr- are renamed ms- and me- padding: pl- and pr- are renamed ps- and pe- and some others stuff
Please wait the next repository update (with bootstrap 5 support) or downgrade to bootstrap 4.
Getting a build error on vanilla-search upgrade of bootstrap 5 update.
Bootstrap version 5.1.3