indicate
Version:
Scroll indicator for elements with scrollable overflow.
17 lines (16 loc) • 372 B
JavaScript
// theme/youtube.ts
var youtube_default = {
indicator: (_, options, direction) => ({
background: `linear-gradient(to ${direction}, rgba(255, 255, 255, 0), ${options.color} 25%)`,
width: "100px"
}),
arrow: () => ({
padding: "0 12px",
width: "6px",
height: "6px"
})
};
export {
youtube_default as default
};
//# sourceMappingURL=youtube.js.map