Created
June 8, 2020 03:34
-
-
Save schalkneethling/ac49d6ff01a33f41b4fd46b62b9c4e65 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"Font face": { | |
"scope": "css, scss", | |
"prefix": "fontface", | |
"body": [ | |
"@font-face {", | |
" font-family: \"$1\";", | |
" font-display: swap;", | |
" src: url(\"$2\") format(\"woff2\"),", | |
" url(\"$3\") format(\"woff\");", | |
" font-weight: normal;", | |
" font-style: normal;", | |
"}"], | |
"description": "@font-face style block" | |
}, | |
"Visually Hidden": { | |
"scope": "css, scss", | |
"prefix": "vishid", | |
"body": [ | |
".visually-hidden {", | |
" border: 0;", | |
" clip: rect(0 0 0 0);", | |
" height: 1px;", | |
" margin: -1px;", | |
" overflow: hidden;", | |
" padding: 0;", | |
" position: absolute !important; /* stylelint-disable-line declaration-no-important */", | |
" width: 1px;", | |
"}"], | |
"description": "Hide visually but not from screen readers" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment