seemore 1.10.4 → 1.10.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -629,6 +629,14 @@
|
|
|
629
629
|
color: var(--color-fd-foreground, #111827);
|
|
630
630
|
}
|
|
631
631
|
|
|
632
|
+
/* Tablet width, below the rail breakpoint: the collapsible TOC still sits in flow, but the
|
|
633
|
+
base 1rem side padding reads as too tight once the column is this wide. */
|
|
634
|
+
@media (min-width: 768px) and (max-width: 1023.98px) {
|
|
635
|
+
.seemore-export-main {
|
|
636
|
+
padding: 4rem 3rem 4rem;
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
|
|
632
640
|
/* From 1024px up — the live page's own `lg` breakpoint for showing its TOC rail — there is
|
|
633
641
|
enough room for the rail if the reading column gives up its centring and narrows to make
|
|
634
642
|
space; below that the rail would ride over the text at any column width, so the
|
|
@@ -645,7 +653,7 @@
|
|
|
645
653
|
margin-inline: 0;
|
|
646
654
|
max-width: none;
|
|
647
655
|
padding-inline-end: 18rem;
|
|
648
|
-
padding-inline-start:
|
|
656
|
+
padding-inline-start: 6rem;
|
|
649
657
|
}
|
|
650
658
|
|
|
651
659
|
.seemore-export-toc {
|