8 lines
403 B
JavaScript
8 lines
403 B
JavaScript
|
module.exports = (dir, to, from) =>
|
||
|
` background-image: -webkit-linear-gradient(${dir}, ${to}, ${from});
|
||
|
background-image: -moz-linear-gradient(${dir}, ${to}, ${from});
|
||
|
background-image: -ms-linear-gradient(${dir}, ${to}, ${from});
|
||
|
background-image: linear-gradient(${dir}, ${to}, ${from});
|
||
|
filter: progid:DXImageTransform.Microsoft.gradient(GradientType=1,startColorstr=${to}, endColorstr=${from});`
|
||
|
|