Albin N

Results 14 comments of Albin N

:smile: thanks!

What If you don't want to change minimum-stability to dev? I would like to stay on stable.

There is an endpoint that fetches a list of the current user's playlist. https://developer.spotify.com/documentation/web-api/reference/playlists/get-a-list-of-current-users-playlists/

![Skärmavbild 2022-02-25 kl 14 05 09](https://user-images.githubusercontent.com/4033930/155719972-e74db403-a408-498b-80f1-290b8eec95d6.png) You have to click on "Inspector" and then choose the Vuex tab

This shows most of the time if you put a TextBox inside an animated UiModal (scale animation)

I have the same issue but when inside a `UiTab`-component

Have you tried below? ```html .input { @apply bg-gray-200 border h-10 } ``` I can't get `@apply` to work in my scoped styles either.

I got it working after installing `laravel-mix-tailwind` and using it this way in my `webpack.config.js` ```js require('laravel-mix-tailwind') mix.postCss('resources/css/app.css', 'public/css', [ require('tailwindcss')('./tailwind.config.js') ]).tailwind() ``` Style example in my vue file (notice...

> > I got it working after installing `laravel-mix-tailwind` and using it this way in my `webpack.config.js` > > ```js > > require('laravel-mix-tailwind') > > > > mix.postCss('resources/css/app.css', 'public/css', [...

So now I have the use case of using postcss in a vue component like below: ```vue .test { @apply bg-red-400; /*Not working */ } .postcss-test { .working { background:...