fabian-hiller / valibot

The modular and type safe schema library for validating structural data 🤖
https://valibot.dev
MIT License
6.32k stars 204 forks source link

feat: Auto-scroll playground's logs container to the latest log message #930

Open DrWarpMan opened 5 days ago

DrWarpMan commented 5 days ago

Closes #920

fabian-hiller commented 5 days ago

I think there is a native scrollIntoView method we could use: https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollIntoView

logsElement.scrollIntoView({
  block: 'nearest',
  inline: 'center',
});