open-props icon indicating copy to clipboard operation
open-props copied to clipboard

Enable smooth scrolling for nested scrollers also

Open argyleink opened this issue 2 years ago • 0 comments

Currently the style only applies to the root scroller html, missing nested scrollers. This will match any of them that use url hash targets inside. Also adds scroll padding. Nice use case shown by Kevin here.

@media (--motionOK) {
  :where(:has(:target)) {
    scroll-behavior: smooth;
    scroll-padding-block-start: max(2rem, 5svb);
  }
}

argyleink avatar Jan 07 '24 05:01 argyleink