suitcss/base

Remove outline from elements removed from tab flow

Closed this issue · 0 comments

/**
 * Suppress the focus outline on links that cannot be accessed via keyboard.
 * Prevents the dotted outline from persisting around some block links that
 * open in a new window.
 */

[tabindex="-1"] {
  outline: none;
}