Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,9 @@ $focus-ring-offset: 0.125rem; // 2px at 100% zoom (0.125 * 16px base font = 2px)
// outline creates the same style of focus ring, it just uses CSS outline instead of box shadow
$focus-ring-outline: $focus-ring-color solid $focus-ring-width;
$btn-focus-box-shadow: $focus-ring-box-shadow;

// Speed up site navigation and reduce animation when using anchor links:
// Don't enable `scroll-behavior: smooth` globally, instead use
// `scroll-behavior: auto` which is also the behavior when
// `prefers-reduced-motion` is active.
$enable-smooth-scroll: false;
Loading