/
githubmirror
/
docusaurus
Обзор
Документация
Войти
/
githubmirror
/
docusaurus
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/docusaurus-theme-common/src/utils/accessibilityUtils.ts
10 строк
314 B
Sébastien Lorber
fix(theme): fix collapsible sidebar behavior when prefers-reduced-motion (#8971)
12 май 2023, 13:18
Не верифицирован
12 май 2023, 13:18
905fe7f
Код
Авторство
О чём код?
/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. */ export function prefersReducedMotion(): boolean { return window.matchMedia('(prefers-reduced-motion: reduce)').matches; }