oficiodesign / initial-css

MIT License
4 stars 1 forks source link

Focused mixin deserves some attention #109

Open robsonsobral opened 2 years ago

robsonsobral commented 2 years ago
&:focus { /* some exciting focus styles */ }
&:focus:not(:focus-visible) {
    /* undo all the above focused styles
       if the element has focus but the browser wouldn't normally
       show default focus styles */
}
&:focus-visible { /* some even *more* exciting focus styles */ }