Skip to content

Commit 43ed873

Browse files
Aster89lpil
authored andcommitted
CSS: reorder arguments to text-shadow and add inset argument to box-shadow
1 parent 09593db commit 43ed873

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

UltiSnips/css.snippets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,11 +45,11 @@ snippet ! "!important CSS (!)"
4545
endsnippet
4646

4747
snippet tsh "text-shadow: color-hex x y blur (text)"
48-
text-shadow: ${1:${2:color} ${3:offset-x} ${4:offset-y} ${5:blur}};$0
48+
text-shadow: ${1:${2:offset-x} ${3:offset-y} ${4:blur} ${5:color}};$0
4949
endsnippet
5050

5151
snippet bxsh "box-shadow: color-hex x y blur (text)"
52-
box-shadow: ${1:${2:offset-x} ${3:offset-y} ${4:blur} ${5:spread} ${6:color}};$0
52+
box-shadow: ${1:${2:offset-x} ${3:offset-y} ${4:blur} ${5:spread} ${6:color} ${7:inset}};$0
5353
endsnippet
5454

5555
#

0 commit comments

Comments
 (0)