Skip to content

Commit 7803b57

Browse files
committed
Minor update
1 parent 2b2ce87 commit 7803b57

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ const prefixNegativeModifiers = function (base, modifier) {
88

99
module.exports = function () {
1010
return ({ addUtilities, e, theme, variants }) => {
11-
const scales = theme('scale', {
11+
const scale = theme('scale', {
1212
0: '0',
1313
25: '.25',
1414
50: '.5',
@@ -17,7 +17,7 @@ module.exports = function () {
1717
});
1818

1919
const utilities = fromPairs(
20-
map(scales, (value, modifier) => {
20+
map(scale, (value, modifier) => {
2121
return [
2222
`.${e(prefixNegativeModifiers('scale', modifier))}`,
2323
{

0 commit comments

Comments
 (0)