Currently, I am developing a website utilizing Bootstrap 5. However, I have encountered a problem with form switches when using a customized version of Bootstrap 5.1.3
Interestingly, when I include Bootstrap 5.1.3 via CDN, the form switches display correctly.
Yet, when I incorporate my customized version, the form switches unexpectedly revert back to a checkbox in Safari, despite importing all Bootstrap components like this:
$primary: #00D9E0;
$secondary: #BFFDFF;
$light: #EEEEEE;
$dark: #333333;
$info: #4394B1;
$success: #91C7B1;
$danger: #B33951;
$warning: #E3D081;
@import "../../foundation/bootstrap-5.1.3/scss/bootstrap";
Interestingly, in Firefox, the form switches continue to display correctly.
Could it be that I am making a mistake, or do I need to wait for an update?
Appreciate any assistance!