/
githubmirror
/
docusaurus
Обзор
Документация
Войти
/
githubmirror
/
docusaurus
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/docusaurus-theme-classic/src/theme/DocRoot/Layout/Sidebar/ExpandButton/styles.module.css
34 строки
765 B
Sébastien Lorber
chore: upgrade stylelint (#11992)
29 май 2026, 18:24
Не верифицирован
29 май 2026, 18:24
ff28bdf
Код
Авторство
О чём код?
/** * 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. */ @media (width >= 997px) { .expandButton { position: absolute; top: 0; right: 0; width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; transition: background-color var(--ifm-transition-fast) ease; background-color: var(--docusaurus-collapse-button-bg); } .expandButton:hover, .expandButton:focus { background-color: var(--docusaurus-collapse-button-bg-hover); } .expandButtonIcon { transform: rotate(0); } [dir='rtl'] .expandButtonIcon { transform: rotate(180deg); } }