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 2b2ce87 commit 7803b57Copy full SHA for 7803b57
index.js
@@ -8,7 +8,7 @@ const prefixNegativeModifiers = function (base, modifier) {
8
9
module.exports = function () {
10
return ({ addUtilities, e, theme, variants }) => {
11
- const scales = theme('scale', {
+ const scale = theme('scale', {
12
0: '0',
13
25: '.25',
14
50: '.5',
@@ -17,7 +17,7 @@ module.exports = function () {
17
});
18
19
const utilities = fromPairs(
20
- map(scales, (value, modifier) => {
+ map(scale, (value, modifier) => {
21
return [
22
`.${e(prefixNegativeModifiers('scale', modifier))}`,
23
{
0 commit comments