27 lines
367 B
CSS
Executable File
27 lines
367 B
CSS
Executable File
.DocumentationPage {
|
|
display: flex;
|
|
flex-direction: row-reverse;
|
|
justify-content: space-between;
|
|
padding-top: 25px;
|
|
}
|
|
|
|
.contents {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
.tableOfContents {
|
|
position: sticky;
|
|
top: 60px;
|
|
width: 150px;
|
|
height: min-content;
|
|
}
|
|
|
|
.docTitle {
|
|
padding-bottom: 50px;
|
|
}
|
|
|
|
.hoverCard {
|
|
position: fixed;
|
|
bottom: 10px;
|
|
}
|