@healthcatalyst/catalyst-docfx-template 1.0.154 → 1.0.155

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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@healthcatalyst/catalyst-docfx-template",
3
- "version": "1.0.154",
3
+ "version": "1.0.155",
4
4
  "license": "MIT",
5
5
  "description": "A DocFX Template patching the Default template.",
6
6
  "publishConfig": {
package/styles/main.css CHANGED
@@ -2099,3 +2099,10 @@ article .tabGroup > ul > li {
2099
2099
  #faqTable tr.header, #faqTable tr:hover {
2100
2100
  background-color: #f1f1f1;
2101
2101
  }
2102
+
2103
+ /* Make the right-hand In-This-Topic panel scrollable */
2104
+ .sideaffix .affix {
2105
+ max-height: calc(100vh - 150px); /* adjust based on header/footer */
2106
+ overflow-y: auto;
2107
+ overflow-x: hidden;
2108
+ }