mirror of
https://gitea.phreedom.club/tolstoevsky/fedi.git
synced 2024-11-05 20:43:11 +00:00
10 lines
165 B
SCSS
10 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;
|
||
|
}
|