Spaces:
Running
on
Zero
Running
on
Zero
File size: 511 Bytes
a9a0ec2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
/*
* Copyright (c) Facebook, Inc. and its affiliates.
* some extra css to make markdown look similar between github/sphinx
*/
/*
* Below is for install.md:
*/
.rst-content code {
white-space: pre;
border: 0px;
}
.rst-content th {
border: 1px solid #e1e4e5;
}
.rst-content th p {
/* otherwise will be default 24px for regular paragraph */
margin-bottom: 0px;
}
.rst-content .line-block {
/* otherwise will be 24px */
margin-bottom: 0px;
}
div.section > details {
padding-bottom: 1em;
}
|