Benjamin Brkić

Results 8 comments of Benjamin Brkić

Seems like it has something to do with reverting to light mode from dark mode. It's hard to reproduce but looks like it is caused by that, also seems like...

Any updates on [`next-intl`](https://next-intl-docs.vercel.app/)?

> > Any updates on [`next-intl`](https://next-intl-docs.vercel.app/)?< > > better use nextjs built-in internalization options, i18next have issues with client rendering, found this example below, all works pretty good [example](https://github.com/romandesigns/nextjs-13-1-app-dir-i18n-example/tree/main) Just...

Same here, nothing happens in my CSS file

> > Same here, nothing happens in my CSS file > > @benyamynbrkyc i add this in my .vscode/settings.json "cssVarColorDecorator.supportedLanguages": ["css", "scss", "tailwindcss", "html"], and it works Tried it, still...

> Had the same issue, fixed it with `:root[class~="dark"]` instead of `.dark` in `style.css` > > style.css for reference: https://github.com/langfuse/langfuse-docs/blob/e9ba748e0e53e5d9179ffc0040839108d1930621/style.css#L39 Thank you, this worked for me as well. I just...

Looks like it is. I still have to use the root selector, e.g.: ```css .dark, :root[class~='dark'] { ... } ```