Files

10 lines
165 B
SCSS
Raw Permalink Normal View History

2026-02-14 02:36:56 -05:00
// WebKit-style focus
@mixin tab-focus() {
// Default
outline: thin dotted;
// WebKit
outline: 5px auto -webkit-focus-ring-color;
outline-offset: -2px;
}