Johannes Mutter

Results 8 comments of Johannes Mutter

I experience the same issue. Not only does optimizeCss remove carbon-charts styles (in my case the legend), but it also removes the search bar styles of the UI shell and...

Same issue here using SvelteKit. I thought it had something to do with node-sass, sass or svelte-preprocess. But couldn’t nail it down yet. ```javascript import adapter from '@sveltejs/adapter-auto'; import {...

Can confirm. Also weirdly the global { } selector issue not happening in the Svelte 5 [REPL](https://svelte-5-preview.vercel.app/#H4sIAAAAAAAAE31PzUrGMBB8lbCX71Ibeg2xID6G8VCb1Czkj2S_ail9d0mCehFPOzvMzuycsKEzBcTLCWHxBgQ8pQQD0JHqUnbjyMAAJd7zWhlZ1oyJZhUUoU8xE3u26DTbcvTsNvK2jf3wpoLkvwdBatzZ6pZSHhX440HjrmBWQXYLXiHXuHdxocOZFjR2LRPvLr4tjp2VVGSnb6RojS5mwbLRnbnquFp-s4EBfNS4odEgKN_NNfxUbun_lrbT3F-0E_tAsozMJ0lupz98X68vrTcD_VYBAAA=) but only in a freshly installed sveltekit project in dev mode (?) `:global(...)...

Same issue. As a temporary fix I'm using the on:loadmetadata event to set the volume to 0. ```Svelte let videos = ["1.mp4","2.mp4"]; let videoElements = []; {#each videos as src,...

Hey, I agree that git is not ideal storing large video files. But in my use case I need to store **MP4** files as a more storage efficient replacement for...

I went for hammer.js. There’s also an implementation for svelte: https://github.com/beomy/svelte-hammer#readme

> I just tested [these MDN examples](https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Global_attributes/autocapitalize#result) in Safari 18.4, and autocapitalize does not appear to be supported. On iOS Safari 18.6.2 all the demos work as expected. I’d therefore...

Here's everything together for easy copy & paste: ```css /* Squircle CSS Variables and Basic Styles */ .squircle { --squircle-radius: var(--border-radius-large); --squircle-smooth: 0.7; --background-color: #EEE; --border-color: red; --border-hover-color: black; --border-width:...