Gergely Tarján

Results 21 comments of Gergely Tarján

Not possible from the CDN, but both fill and stroke colors can be customized through the config. Check out customizing section on the utility pages: https://tailwindcss.com/docs/stroke/#customizing https://tailwindcss.com/docs/fill/#customizing https://tailwindcss.com/docs/configuration

Yes, emmet doesn't like the `/` character. Btw in the footer on the page there is a link to tailwind.run's issues (though doubtful that this could be fixed unless emmet...

`@screen` uses your `screens` setup in the config. Breakpoint customization docs: https://tailwindcss.com/docs/breakpoints/

If an actual `img` is not necessary the image could be a background to a `rounded-full overflow-hidden` element that hosts the green element inside it. If an image element is...

Add it as `max-width` utility, the `container` in its core is really just that. In the upcoming `1.2` release, you'll have the breakpoint based `max-width` utilities out of the box....

Which resolution is triggered is browser and environment-dependent, `md` is a common one (but for example chromium gets me different breakpoints based on portrait/landscape, but paper size and DPI does...

https://tailwindcss.com/docs/functions-and-directives#tailwind In the core, currently the only component is the `container`, everything else is utilities.

You can process `` tags in two ways with [rollup-plugin-svelte](https://github.com/rollup/rollup-plugin-svelte). 1. Use `emitCss: true` option, this will pass the content of style tags as css files to rollup, so you...

Example with `emitCss: true` method: https://github.com/tlgreg/svelte-tailwindcss-example There is an issue currently which makes using `@apply` impossible with components in practice. (Compiler throws an error if there is more then one...

I still couldn't come back to my sapper/svelte side-project to look into this more, unfortunately. Last time I also ran into some issues with sapper too and importing global postcss,...