blob: 9d9b241d4105b8e730a907e876e272ce6bcf3085 (
plain) (
blame)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 | // Page-specific styling for pages that make use of embedded
// RST documents that have been parsed into HTML.
$page_classes: (
  uses-rst,  // All pages that declare their use of the RST parser
);
@each $class in $page_classes {
  .#{$class} {
    .document li p {
      margin-bottom: 0;
    }
    .document img {
      margin-bottom: 20px;
    }
    #editor {
      min-height: 50vh;
      resize: vertical;
    }
  }
}
 |