tailwindcss-pseudo-elements
tailwindcss-pseudo-elements copied to clipboard
TailwindCSS Plugin that adds variants of pseudo elements.
There is an error with this repository's Renovate configuration that needs to be fixed. As a precaution, Renovate will stop PRs until it is resolved.
Bumps [jpeg-js](https://github.com/eugeneware/jpeg-js) from 0.4.3 to 0.4.4. Release notes Sourced from jpeg-js's releases. v0.4.4 v0.4.4 (2022-06-07) feat: add comment tag encoding (#87) (13e1ffa), closes #87 fix: validate sampling factors (#106) (9ccd35f),...
Bumps [minimist](https://github.com/substack/minimist) from 1.2.5 to 1.2.6. Commits 7efb22a 1.2.6 ef88b93 security notice for additional prototype pollution issue c2b9819 isConstructorOrProto adapted from PR bc8ecee test from prototype pollution PR See full...
i was try for using peer class name. but twin.macro raise error: MacroError: peer was not found code example: ` const MenuItem = tw.a'text-xs uppercase cursor-pointer peer' `
TailwindCSS 2.1.4 Install this plugin and configured tailwind.config.js variants: { extend: { width: ['before', 'after'], height: ['before', 'after'], borderRadius: ['before', 'after'], backgroundColor: ['active', 'before', 'after'], } } HTML
`Error: Your config mentions the "last::before" variant, but "last::before" doesn't appear to be a variant. Did you forget or misconfigure a plugin that supplies that variant?` `display: ['responsive', 'odd', 'after',...
Hello, Is it normal that the `after:empty-content` class is not working? Thanks for your feedback !
``` @tailwind base; @tailwind components; @tailwind utilities; @layer components { .btn-blue { @apply py-2 px-4 bg-blue-500 text-white font-semibold rounded-lg shadow-md hover: bg-blue-700 focus:outline-none focus:ring-2 focus:ring-blue-400 focus:ring-opacity-75; } } ```
The instructions are still unclear to me. Could you please provide an example repo?
Hi, thanks for this plugin. I want to use the `classNameReplacer` in my NextJS App, but it doesn't work for me. I configure the plugin like this: ``` module.exports =...