@microsoft/atlas-css 3.57.0 → 3.57.1

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": "@microsoft/atlas-css",
3
- "version": "3.57.0",
3
+ "version": "3.57.1",
4
4
  "description": "Styles backing the Atlas Design System used by Microsoft's Developer Relations.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -363,9 +363,9 @@ $default-flyout-width-widescreen: 480px;
363
363
  &.layout-twin,
364
364
  &.layout-sidecar-left,
365
365
  &.layout-sidecar-right {
366
- // 👇 minus two pixel at the end to account for percentage points and rounding, one px generally suffices though
366
+ // 👇 minus a pixel at the end to account for percentage points and rounding
367
367
  --atlas-contained-height: calc(
368
- var(--window-inner-height) - var(--atlas-header-height) - var(--atlas-footer-height) - 2px
368
+ var(--window-inner-height) - var(--atlas-header-height) - var(--atlas-footer-height) - 1px
369
369
  );
370
370
  }
371
371
 
@@ -389,9 +389,9 @@ $default-flyout-width-widescreen: 480px;
389
389
  // Because the holy grail has two rows (containing menu main, menu aside) on tablet, we cannot apply height constraints at that size
390
390
  @include desktop {
391
391
  .layout.layout-constrained.layout-holy-grail {
392
- // 👇 minus two pixel at the end to account for percentage points and rounding, one px generally suffices though
392
+ // 👇 minus a pixel at the end to account for percentage points and rounding
393
393
  --atlas-contained-height: calc(
394
- var(--window-inner-height) - var(--atlas-header-height) - var(--atlas-footer-height) - 2px
394
+ var(--window-inner-height) - var(--atlas-header-height) - var(--atlas-footer-height) - 1px
395
395
  );
396
396
 
397
397
  .layout-body-main,
@@ -177,7 +177,7 @@ $site-header-panel-featured-section-border: 1px solid $table-border-dark !defaul
177
177
  background-color: $site-header-panel-background-color;
178
178
  text-wrap: wrap;
179
179
  box-shadow: $site-header-panel-shadow;
180
- z-index: $zindex-dropdown;
180
+ z-index: $zindex-popover;
181
181
  inset-inline-start: 0;
182
182
  inset-block-start: calc($site-header-height - 1px);
183
183
  border-block-start: $site-header-panel-border;