Skip to content

Instantly share code, notes, and snippets.

@robby1066
Last active December 28, 2020 16:06
Show Gist options
  • Save robby1066/c1310e6551d7d2257b8e1dc7111ce382 to your computer and use it in GitHub Desktop.
Save robby1066/c1310e6551d7d2257b8e1dc7111ce382 to your computer and use it in GitHub Desktop.
A VS Code snippet for css / scss files that includes a `:focus` selector on `:hover` declarations to enhance keyboard navigation
{
"Hover / Focus": {
"prefix": ":hover",
"body": [
":hover,",
"${TM_CURRENT_LINE/:ho?v?e?r?/:focus/} {",
" $1",
"}"
],
"description": "Hover / Focus"
}
}
@robby1066
Copy link
Author

robby1066 commented Dec 28, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment