feat: mobile-web improvements - scrubber (#16856)

* feat: mobile-web improvements - scrubber

* lint

* cruft

* lint

* fix: thumb style

---------

Co-authored-by: Alex Tran <alex.tran1502@gmail.com>
This commit is contained in:
Min Idzelis
2025-03-21 14:00:24 -04:00
committed by GitHub
parent b5d5c40c69
commit 55b52ecbec
4 changed files with 115 additions and 15 deletions
@@ -0,0 +1,9 @@
import { MediaQuery } from 'svelte/reactivity';
const hoverNone = new MediaQuery('hover: none');
export const mobileDevice = {
get hoverNone() {
return hoverNone.current;
},
};