UNPKG

tailwindcss

Version:

A utility-first CSS framework for rapidly building custom user interfaces.

20 lines (17 loc) 429 B
import postcss from 'postcss' import postcssNested from 'postcss-nested' import postcssJs from 'postcss-js' export default function parseObjectStyles(styles) { if (!Array.isArray(styles)) { return parseObjectStyles([styles]) } return styles.flatMap((style) => { return postcss([ postcssNested({ bubble: ['screen'], }), ]).process(style, { parser: postcssJs, }).root.nodes }) }