@salesforcedevs/docs-components 1.3.227-dh4-alpha → 1.3.227-dh5-alpha

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": "@salesforcedevs/docs-components",
3
- "version": "1.3.227-dh4-alpha",
3
+ "version": "1.3.227-dh5-alpha",
4
4
  "description": "Docs Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -45,6 +45,10 @@ header:not(.has-brand) > .header_l2 {
45
45
  min-width: 320px;
46
46
  }
47
47
 
48
+ .no-header-content {
49
+ border-top: 1px solid var(--dx-g-gray-90);
50
+ }
51
+
48
52
  @media (max-width: 768px) {
49
53
  .header_l2 {
50
54
  padding: 0;
@@ -40,4 +40,7 @@
40
40
  </header>
41
41
  </dx-brand-theme-provider>
42
42
  </template>
43
+ <template if:false={shouldRender}>
44
+ <div class="no-header-content"></div>
45
+ </template>
43
46
  </template>
@@ -23,7 +23,6 @@ export default class Header extends HeaderBase {
23
23
  private _scopedNavItems!: OptionWithNested[];
24
24
  private tablet = false;
25
25
  private tabletMatchMedia!: MediaQueryList;
26
- private shouldRender = false;
27
26
 
28
27
  protected mobileBreakpoint(): string {
29
28
  return MOBILE_MATCH;