webapp/src/utils/media-query.ts
Arkadzi Rakouski b5c8f1d60a
implement table of contents (#146)
* implement table of contents

* refactor by review comments

* refactor by review comments

* lint

* minor fix

---------

Co-authored-by: bniwredyc <bniwredyc@gmail.com>
2023-07-31 23:43:41 +02:00

5 lines
188 B
TypeScript

import { createMediaQuery } from '@solid-primitives/media'
export const isMobile = createMediaQuery('(max-width: 767px)')
export const isDesktop = createMediaQuery('(min-width: 1200px)')