mirror of
https://github.com/twbs/bootstrap.git
synced 2022-11-09 12:25:43 -05:00
9 lines
165 B
SCSS
9 lines
165 B
SCSS
// WebKit-style focus
|
|
|
|
@mixin tab-focus() {
|
|
// Default
|
|
outline: thin dotted;
|
|
// WebKit
|
|
outline: 5px auto -webkit-focus-ring-color;
|
|
outline-offset: -2px;
|
|
}
|