@beacon-interactive-systems-llc/beacon-platform-ui 20.1.2 → 20.1.3
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 +1 -1
- package/styles/_layout.scss +11 -0
package/package.json
CHANGED
package/styles/_layout.scss
CHANGED
|
@@ -144,6 +144,8 @@ $detail-sidebar-width: 212px;
|
|
|
144
144
|
$detail-tab-body-offset: 128px;
|
|
145
145
|
$detail-tab-body-sm-offset: 140px;
|
|
146
146
|
$detail-tab-body-xl-offset: 190px;
|
|
147
|
+
$sidebar-sm-offset: 159px;
|
|
148
|
+
$sidebar-xl-offset: 208px;
|
|
147
149
|
|
|
148
150
|
$detail-container-padding: 1rem;
|
|
149
151
|
$detail-view-width: calc(100vw - $leftnav-width);
|
|
@@ -512,6 +514,15 @@ $detail-view-width-expanded: calc(100vw - $leftnav-collapsed-width);
|
|
|
512
514
|
background: apply('containerSidebarBackground');
|
|
513
515
|
border-left: apply('containerSidebarBorderLeft')
|
|
514
516
|
}
|
|
517
|
+
|
|
518
|
+
&.sm-header {
|
|
519
|
+
top: $sidebar-sm-offset;
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
&.xl-header {
|
|
523
|
+
top: $sidebar-xl-offset;
|
|
524
|
+
}
|
|
525
|
+
|
|
515
526
|
height: calc(100vh - $header-height - $detail-header-height);
|
|
516
527
|
margin-left: 12px;
|
|
517
528
|
overflow-y: auto;
|