@salesforcedevs/dx-components 1.3.210-lnb20-alpha → 1.3.210-lnb21-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
|
@@ -150,4 +150,11 @@ export class SidebarBase extends LightningElement {
|
|
|
150
150
|
private get hasSidebarFooter(): boolean {
|
|
151
151
|
return this.languages?.length > 1 || Boolean(this.bailHref);
|
|
152
152
|
}
|
|
153
|
+
|
|
154
|
+
private get sidebarContentClass(): string {
|
|
155
|
+
const sidebarConterCss = "sidebar-content sidebar-content-tree";
|
|
156
|
+
return this.hasSidebarFooter || this.hasMobileSidebarFooter
|
|
157
|
+
? sidebarConterCss + " sidebar-content-hasfooter"
|
|
158
|
+
: sidebarConterCss;
|
|
159
|
+
}
|
|
153
160
|
}
|
|
@@ -140,7 +140,10 @@
|
|
|
140
140
|
border-right: 1px solid var(--dx-g-gray-90);
|
|
141
141
|
height: var(--dx-g-spacing-2xl);
|
|
142
142
|
align-items: center;
|
|
143
|
-
|
|
143
|
+
}
|
|
144
|
+
|
|
145
|
+
.sidebar-content-hasfooter {
|
|
146
|
+
margin-bottom: var(--dx-g-spacing-2xl);
|
|
144
147
|
}
|
|
145
148
|
|
|
146
149
|
@media screen and (max-width: 1279px) {
|