This repository was archived by the owner on Apr 6, 2021. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ const { asValue } = require('../pluginUtils')
44module . exports = function ( { matchUtilities, jit : { theme } } ) {
55 matchUtilities ( {
66 z : ( modifier , { theme } ) => {
7- let value = asValue ( modifier , theme . scale )
7+ let value = asValue ( modifier , theme . zIndex )
88
99 if ( value === undefined ) {
1010 return [ ]
Original file line number Diff line number Diff line change 11const postcss = require ( 'postcss' )
22const { default : parseObjectStyles } = require ( 'tailwindcss/lib/util/parseObjectStyles' )
3+ const { transformAllSelectors } = require ( '../pluginUtils' )
34const { toPostCssNode, isPlainObject } = require ( './utils' )
45
56// Generate match permutations for a class candidate, like:
Original file line number Diff line number Diff line change @@ -600,7 +600,7 @@ function setupContext(configOrPath) {
600600 if ( contextMap . has ( sourcePath ) ) {
601601 let oldContext = contextMap . get ( sourcePath )
602602 if ( contextSourcesMap . has ( oldContext ) ) {
603- contextSourcesMap . get ( oldContext ) . remove ( sourcePath )
603+ contextSourcesMap . get ( oldContext ) . delete ( sourcePath )
604604 if ( contextSourcesMap . get ( oldContext ) . size === 0 ) {
605605 contextSourcesMap . delete ( oldContext )
606606 cleanupContext ( oldContext )
You can’t perform that action at this time.
0 commit comments