UNPKG

docsify

Version:

A magical documentation generator.

10 lines (7 loc) 274 B
const computedStyle = getComputedStyle(document.documentElement, null); export const mobileBreakpoint = computedStyle.getPropertyValue( '--_mobile-breakpoint', ); export function isMobile() { return window?.matchMedia?.(`(max-width: ${mobileBreakpoint})`)?.matches; }