test: fix font weight notation stylelint rules

This commit is contained in:
alistair3149 2021-01-11 11:50:41 -05:00
parent da76ccbbeb
commit bf7f458b79
No known key found for this signature in database
GPG key ID: 94D081060FD3DD9C

View file

@ -6,19 +6,19 @@
@font-face {
font-display: swap;
font-family: 'Roboto';
/* stylelint-enable font-weight-notation */
font-style: normal;
/* stylelint-disable font-weight-notation */
font-weight: 100 900;
/* stylelint-enable font-weight-notation */
src: url( '@{font-directory}RobotoVF.woff2' ) format( 'woff2-variations' );
}
@font-face {
font-display: swap;
font-family: 'Roboto';
/* stylelint-enable font-weight-notation */
font-style: italic;
/* stylelint-disable font-weight-notation */
font-weight: 100 900;
/* stylelint-enable font-weight-notation */
src: url( '@{font-directory}Roboto-ItalicVF.woff2' ) format( 'woff2-variations' );
}