@salesforcedevs/docs-components 1.17.13-table → 1.17.13-table-2

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/lwc.config.json CHANGED
@@ -11,6 +11,7 @@
11
11
  "doc/content",
12
12
  "doc/contentCallout",
13
13
  "doc/doDont",
14
+ "doc/table",
14
15
  "doc/contentLayout",
15
16
  "doc/contentMedia",
16
17
  "doc/docXmlContent",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/docs-components",
3
- "version": "1.17.13-table",
3
+ "version": "1.17.13-table-2",
4
4
  "description": "Docs Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -68,7 +68,10 @@
68
68
  /* Sticky headers */
69
69
  .doc-table--sticky-headers .doc-table__header-cell {
70
70
  position: sticky;
71
- top: var(--dx-g-doc-header-banner-height, 0);
71
+ top: calc(
72
+ var(--dx-g-global-header-height) +
73
+ var(--dx-g-doc-header-banner-height, 0px)
74
+ );
72
75
  z-index: 10;
73
76
 
74
77
  /* Ensure background is maintained when sticky */
@@ -174,7 +177,10 @@
174
177
 
175
178
  /* Adjust sticky header position for mobile */
176
179
  .doc-table--sticky-headers .doc-table__header-cell {
177
- top: var(--dx-g-doc-header-banner-height, 0);
180
+ top: calc(
181
+ var(--dx-g-global-header-height) +
182
+ var(--dx-g-doc-header-banner-height, 0px)
183
+ );
178
184
  }
179
185
  }
180
186