Jonas Oppenlaender

Results 7 comments of Jonas Oppenlaender
trafficstars

Pretty impossible to apply styles to the autocomplete at the moment. I tried every combination I could think of. Styles in svelte, giving the component classnames, using the classes from...

Okay, I found out how it's done. You can use global to manipulate the style of child components: ``` .parent :global(.childClass) { color: red; } ```

I have added some padding manually now. I want to follow the design recommendations, but I am completely lost what padding to apply where. Also, it leads to undesired styling...

I am having the same problem. Simple html: https://jsfiddle.net/50nw6mzy/ Before dragging: ![before](https://github.com/joetm/crowd-ui/blob/master/initial%20tests/jquery%20ui%20drag%20multiple%20plugin/before.jpg?raw=true) After dragging: ![after](https://github.com/joetm/crowd-ui/blob/master/initial%20tests/jquery%20ui%20drag%20multiple%20plugin/after.jpg?raw=true)

I could use a glob pattern like this: ./js/*_/_.js But that would also include the minified files (which should not be linted). It would be beneficial if files could be...

I use gulp as task runner. I am using Windows, so make is not an option. But I just wanted to add an npm task to my project's package. I...