hacknug/tailwindcss-multi-column

Error when there is a "/" character in a column gap class

benface opened this issue ยท 3 comments

With this config:

theme: {
  columnGap: {
    '1/2': '50%',
  },
},

I am getting the following error:

๐Ÿšซ Error: Unexpected '/'. Escaping special characters with \ may help.
at Root._error (./node_modules/postcss-selector-parser/dist/parser.js:160:16)
  1. I'm dumb and I wasn't escaping the whole modifier ๐Ÿ˜…
  2. This bug affects all my v1.x plugins ๐ŸŽ‰
  3. Working on a fix now ๐Ÿ› 

@benface just published a new version that should fix the issue. Can you confirm it also works for you?

@hacknug Yes it works now. Thank you!