soda-x / postcss-plugin-px2rem

postcss plugin px2rem
193 stars 29 forks source link

设置selectorBlackList: ["scale"]没有用 #6

Open ghost opened 7 years ago

ghost commented 7 years ago
var px2remOpts = {
  rootValue: 34.5,
  unitPrecision: 5,
  propWhiteList: [],
  propBlackList: ["border","border-bottom","border-top"],
  selectorBlackList: ["scale"],
  ignoreIdentifier:false,
  replace: true,
  mediaQuery: false,
  minPixelValue: 0
};
.scale-top-1px
  border none
  position relative
  &:before
    content  " " 
    position absolute
    left 0 
    right 0 
    height 1px
    border-top 1px solid #eee
    color $color

这里的height还是转换成rem了,请问这种该如何解决?

mabobj commented 5 years ago

请问解决了吗?