mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-14 20:24:56 +02:00
24 lines
485 B
CSS
24 lines
485 B
CSS
/**
|
|
* 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.
|
|
*/
|
|
|
|
.tableOfContents {
|
|
max-height: calc(100vh - (var(--ifm-navbar-height) + 2rem));
|
|
overflow-y: auto;
|
|
position: sticky;
|
|
top: calc(var(--ifm-navbar-height) + 1rem);
|
|
}
|
|
|
|
@media (max-width: 996px) {
|
|
.tableOfContents {
|
|
display: none;
|
|
}
|
|
|
|
.docItemContainer {
|
|
padding: 0 0.3rem;
|
|
}
|
|
}
|