Falk Pauser
Falk Pauser
This also happens on fedora linux. Using `asdf` to manage node versions and `yarn` as node package manager.
I switched over to [SimpleBar](https://github.com/Grsmto/simplebar) and don't have any issues so far. ~~Its also lightweight and actively maintained.~~
I got it nearly fully working with this setup: ember-cli-build.js: ```js module.exports = function (defaults) { let app = new EmberApp(defaults, { postcssOptions: { compile: { plugins: [ require('postcss-import')({ path:...
@neojp As @Alonski stated - the production build will contain only the tailwind classes in use. Would be great to get it fully working in development too. Maybe someone with...
Just came across this: https://github.com/tailwindlabs/tailwindcss-jit/issues/57#issuecomment-800161776 Summary: The non-removal of unused classes while developing is intended behavior!
@neojp This issue could be relevant regarding missing/not generated classes: https://github.com/tailwindlabs/tailwindcss-jit/issues/110
I am quit happy with this setup (monorepo, shared tailwind config): https://github.com/fpauser/ember-tailwind-jit-monorepo-setup
You could do the following¹: _Plain handlebars_ ```hbs {{svg-jar "whatever-icon"}} ``` You could also wrap this in a component: _CustomIcon component template_ ```hbs {{svg-jar @icon}} ``` And use it like...
The only solution I came up with is "flickering", because the containers scrollTop can only be set after the list was rendered. Better than nothing, but... ```js import VerticalCollection from...
Any updates on this?