mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-12-24 07:13:51 +01:00
32 lines
636 B
CSS
32 lines
636 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.
|
|
*/
|
|
|
|
.tocCollapsible {
|
|
background-color: var(--ifm-menu-color-background-active);
|
|
border-radius: var(--ifm-global-radius);
|
|
margin: 1rem 0;
|
|
}
|
|
|
|
.tocCollapsibleContent > ul {
|
|
border-left: none;
|
|
border-top: 1px solid var(--ifm-color-emphasis-300);
|
|
padding: 0.2rem 0;
|
|
font-size: 15px;
|
|
}
|
|
|
|
.tocCollapsibleContent ul li {
|
|
margin: 0.4rem 0.8rem;
|
|
}
|
|
|
|
.tocCollapsibleContent a {
|
|
display: block;
|
|
}
|
|
|
|
.tocCollapsibleExpanded {
|
|
transform: none;
|
|
}
|