Skip to content

Commit

Permalink
Fixes, update fixtures
Browse files Browse the repository at this point in the history
  • Loading branch information
adamwathan committed May 4, 2021
1 parent 018c630 commit 53be865
Show file tree
Hide file tree
Showing 7 changed files with 72,039 additions and 73,605 deletions.
4 changes: 2 additions & 2 deletions src/plugins/backdropBlur.js
@@ -1,5 +1,5 @@
export default function () {
return function ({ matchUtilities2, theme }) {
return function ({ matchUtilities2, theme, variants }) {
matchUtilities2(
{
'backdrop-blur': (value) => {
Expand All @@ -8,7 +8,7 @@ export default function () {
},
{
values: theme('backdropBlur'),
variants: theme('backdropBlur'),
variants: variants('backdropBlur'),
type: 'any',
}
)
Expand Down
2 changes: 1 addition & 1 deletion src/plugins/backgroundColor.js
Expand Up @@ -21,7 +21,7 @@ export default function () {
},
{
values: flattenColorPalette(theme('backgroundColor')),
variant: variants('backgroundColor'),
variants: variants('backgroundColor'),
type: 'color',
}
)
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/stroke.js
Expand Up @@ -2,7 +2,7 @@ import flattenColorPalette from '../util/flattenColorPalette'
import toColorValue from '../util/toColorValue'

export default function () {
return function ({ matchUtilities2, theme }) {
return function ({ matchUtilities2, theme, variants }) {
matchUtilities2(
{
stroke: (value) => {
Expand All @@ -13,7 +13,7 @@ export default function () {
},
{
values: flattenColorPalette(theme('stroke')),
variants: theme('stroke'),
variants: variants('stroke'),
type: 'color',
}
)
Expand Down

0 comments on commit 53be865

Please sign in to comment.