Commit 5a6a1287 authored by Mark Otto's avatar Mark Otto
Browse files

fixes #18330

parent e5b69222
Showing with 9 additions and 0 deletions
+9 -0
......@@ -77,6 +77,15 @@ body {
background-color: $body-bg;
}
// Suppress the focus outline on elements that cannot be accessed via keyboard.
// This prevents an unwanted focus outline from appearing around elements that
// might still respond to pointer events.
//
// Credit: https://github.com/suitcss/base
[tabindex="-1"]:focus {
outline: none !important;
}
//
// Typography
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment