Bootstrap-Turbo Scroll Issue

Bootstrap 5 sets the scroll-behavior as smooth

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

As one solution, you can disable smooth-scroll in the application.scss:

$enable-smooth-scroll: false;
@import "bootstrap";

see also: conflict enable-smooth-scroll in bootstrap 5 · Issue #34337 · twbs/bootstrap · GitHub

1 Like