Max Böck
Max Böck
this is a good addition, thank you! regarding the async issue, I would opt to register just the image shortcode as async and leave the icon shortcode as-is, since it...
@nfriedli @TBG-FR I do not own the domain emergency-site.dev anymore. I did initially, but it expired a year or so ago (right when I had COVID myself) and when I...
@nfriedli ah, missed that one. Thanks for the hint, updated!
love it! I'll add it in the next update.
could you tell me what microinteraction you mean specifically? I like david's site a lot but I'm not seeing the *whimsical* yet :D
@kristofzerbe sparklines are instantiated from `.js-sparkline` elements. these could have a `data-theme` attribute to pass the theme definition to JS. the stroke color could then be set accordingly in `sparkline.js`.
hmm - just spitballing here, but whatever method toggles the theme client-side could emit a custom Event, like: ```js const event = new CustomEvent('toggleTheme', { detail: "dark" }); window. dispatchEvent(event);...