Bram Perry

Results 8 comments of Bram Perry

Thanks for this great script. I like using the icon of the terminal app it will open (iTerm2 in my case, and I'm on macOS Mojave in Dark Mode). An...

I had a similar error message: ``` registerLanguage is not a function ``` Downgrading highlight.js to ^9.11.0 fixed that. Thanks for the pointer!

I encountered a similar issue where the rounded width of the sticky element varied by 1 pixel depending on the screen width, which caused it to wrap and misalign on...

I got a `require is undefined` error when importing vue-swing into a Vue 3 project. But managed to fix that by using [this CommonJS plugin for Vite](https://github.com/originjs/vite-plugins/tree/main/packages/vite-plugin-commonjs). Now vue-swing works...

@beeleethebee It has been a while, but I believe I just installed that CommonJS plugin, set it as a plugin in the vite config and then Swing worked. If you...

@beeleethebee My setup was just plain Vue 3 with Swing. I'm not familiar with Quasar. Maybe you can try to get Swing running without Quasar, to determine if the Quasar...

I've used this CSS to restore horizontal scrolling on mobile when using this package: ```CSS overflow-x: hidden; @media (hover: none) { overflow-x: auto; } ``` It prevents overflowing by default...