Skip to content

Instantly share code, notes, and snippets.

@gustavoguichard
Created March 22, 2022 12:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gustavoguichard/add844ebe07a9d4a352085354d72a5b3 to your computer and use it in GitHub Desktop.
Save gustavoguichard/add844ebe07a9d4a352085354d72a5b3 to your computer and use it in GitHub Desktop.
Tailwind children selector
module.exports = {
theme: {
extend: {
// ...
},
},
plugins: [
function ({ addVariant }) {
addVariant('children', '& > *')
},
],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment