2
0

_utilities.focus.scss 371 B

1234567
  1. // stylelint-disable declaration-no-important
  2. // Set global focus outline styles so they are consistent across the UI,
  3. // without individual components having to explicitly define focus styles.
  4. // Using !important because we want to enforce only one style is used across the UI.
  5. *:focus-visible {
  6. outline: $focus-outline-width solid theme('colors.focus') !important;
  7. }