Skip to content

Commit 1c6286d

Browse files
authored
Replace font-style: bold with oblique
`font-style` can only be `normal`, `italic` or `oblique` not `bold`. See: https://developer.mozilla.org/de/docs/Web/CSS/font-style
1 parent 0397b7e commit 1c6286d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

snippets/css-snippets.cson

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
'prefix': 'fdc'
161161
'body': 'flex-direction: column'
162162
'float':
163-
'prefix': 'fl'
163+
'prefix': 'fl'
164164
'body': 'float: ${1:left}'
165165
'float: left':
166166
'prefix': 'fll'
@@ -186,9 +186,9 @@
186186
'font-style: normal':
187187
'prefix': 'fstn'
188188
'body': 'font-style: normal'
189-
'font-style: bold':
190-
'prefix': 'fstb'
191-
'body': 'font-style: bold'
189+
'font-style: oblique':
190+
'prefix': 'fsto'
191+
'body': 'font-style: oblique'
192192
'font-weight':
193193
'prefix': 'fw'
194194
'body': 'font-weight: ${1:bold}'

0 commit comments

Comments
 (0)