stencil-tailwind-plugin icon indicating copy to clipboard operation
stencil-tailwind-plugin copied to clipboard

Plugin for using tailwindcss with StencilJS

Results 11 stencil-tailwind-plugin issues
Sort by recently updated
recently updated
newest added

Thank you for this plugin! I think it's going to make things much easier for a project I'm on. For my project we have a separate package where we use...

I'm trying to get postcss working, but it seems the examples and docs aren't working for me. Project to reproduce here: https://github.com/hirosystems/connect/pull/346 ``` yarn npx lerna run build --scope @stacks/connect-ui...

Hi, first thanks for great plugin. I have problem with tailwinds predefined animations. I am using `animate-ping` as you see in example below. ```html ``` The problem is that after...

bug

![image](https://user-images.githubusercontent.com/6512556/190119560-19dec047-ff74-4b64-a171-d53eaa5549e8.png) I am getting the above warning. But the classes seems to be generated properly. Is there something I am doing wrong? Any way to get rid of the warning?...

As this plugin is a rollup plugin (no pluginType: 'css'), this is run AFTER the stencil hydrate plugin is run. The problem: Stencil hydrate adds comments to the css classes...

Doing: ``` ``` doesn't compile/build the classes. But if the classes are moved to CSS, then work just fine: ``` :host { @apply flex items-center justify-center fixed left-0 top-0 h-screen...

bug

It would be cool if by default the components without any reference to a CSS file guarantee the usage of the TW. At the moment it seems that if there...

Stencil imports use a `?...shadow` that causes tailwind jit to input shadow styles into the final out even when shadows are not used

enhancement

Hello, Attached is a PR where the branch reference of `stencil-tailwind-plugin` has been replaced with the version from the registry. According to the repo, the customization has already been published,...

It seems like the plugin is interfering with Tailwind's optimization process. This is my situation Host css: ```css :host { @apply inline-flex items-center gap-2; /* without these explicit references, these...