We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3318299 commit 2d70824Copy full SHA for 2d70824
Gradient.types.ps1xml
@@ -59,6 +59,7 @@ $gradientValues = @(foreach ($in in $this.input) {
59
}
60
})
61
62
+$ShallowJoiner = (', ' + [Environment]::NewLine + (' ' * 2))
63
if ($gradientValues) {
64
if (-not $gradientTypes) { $gradientTypes = 'radial-gradient'}
65
$gradientCss = @(foreach ($gradientType in $gradientTypes) {
@@ -67,7 +68,7 @@ if ($gradientValues) {
67
68
$(
69
@(
70
$gradientValues
- ) -join (', ' + [Environment]::NewLine + (' ' * 2))
71
+ ) -join $ShallowJoiner
72
)
73
))"
74
}) -join ', '
0 commit comments