➕ add TailwindCSS
+ a lot of node_modules?? unsure what happened
This commit is contained in:
parent
2ba37bfbe3
commit
bb41712ce4
1088 changed files with 224305 additions and 175 deletions
32
node_modules/autoprefixer/lib/hacks/place-self.js
generated
vendored
Normal file
32
node_modules/autoprefixer/lib/hacks/place-self.js
generated
vendored
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
let Declaration = require('../declaration')
|
||||
let utils = require('./grid-utils')
|
||||
|
||||
class PlaceSelf extends Declaration {
|
||||
/**
|
||||
* Translate place-self to separate -ms- prefixed properties
|
||||
*/
|
||||
insert(decl, prefix, prefixes) {
|
||||
if (prefix !== '-ms-') return super.insert(decl, prefix, prefixes)
|
||||
|
||||
// prevent doubling of prefixes
|
||||
if (decl.parent.some(i => i.prop === '-ms-grid-row-align')) {
|
||||
return undefined
|
||||
}
|
||||
|
||||
let [[first, second]] = utils.parse(decl)
|
||||
|
||||
if (second) {
|
||||
utils.insertDecl(decl, 'grid-row-align', first)
|
||||
utils.insertDecl(decl, 'grid-column-align', second)
|
||||
} else {
|
||||
utils.insertDecl(decl, 'grid-row-align', first)
|
||||
utils.insertDecl(decl, 'grid-column-align', first)
|
||||
}
|
||||
|
||||
return undefined
|
||||
}
|
||||
}
|
||||
|
||||
PlaceSelf.names = ['place-self']
|
||||
|
||||
module.exports = PlaceSelf
|
||||
Loading…
Add table
Add a link
Reference in a new issue