18 lines
224 B
SCSS
18 lines
224 B
SCSS
|
|
/* PagedJS print styles */
|
||
|
|
@page {
|
||
|
|
size: A4;
|
||
|
|
margin: 20mm 15mm 26mm 15mm;
|
||
|
|
}
|
||
|
|
h2 {
|
||
|
|
break-before: page;
|
||
|
|
}
|
||
|
|
|
||
|
|
@page {
|
||
|
|
@bottom-center {
|
||
|
|
content: string(title);
|
||
|
|
}
|
||
|
|
}
|
||
|
|
.chapter > h2 {
|
||
|
|
string-set: title content(text);
|
||
|
|
}
|