diff --git a/CHANGELOG-1.x.md b/CHANGELOG-1.x.md index 9dc5ac8d09..ac3b3d6167 100644 --- a/CHANGELOG-1.x.md +++ b/CHANGELOG-1.x.md @@ -1,3 +1,7 @@ +# 1.10.0 () + +- [](https://github.com/patternfly/patternfly-elements/commit/) fix: set margin-top for ctas in footer on mobile + # 1.9.2 (2021-06-01) - [225484b](https://github.com/patternfly/patternfly-elements/commit/225484bfcd166f46b515b2500f2f8710fd227e35) fix: pfe-content-set, bring back ID copy from parent to nested item diff --git a/elements/pfe-navigation/demo/index.html b/elements/pfe-navigation/demo/index.html index f0b90a1d27..0d49311f3f 100644 --- a/elements/pfe-navigation/demo/index.html +++ b/elements/pfe-navigation/demo/index.html @@ -56,6 +56,7 @@ pfe-navigation { --pfe-navigation__logo--MinWidth: 200px; + z-index: 99; } @media (max-width: 440px) { diff --git a/elements/pfe-navigation/src/pfe-navigation--lightdom.scss b/elements/pfe-navigation/src/pfe-navigation--lightdom.scss index de34d51ce2..ec7158c3bc 100644 --- a/elements/pfe-navigation/src/pfe-navigation--lightdom.scss +++ b/elements/pfe-navigation/src/pfe-navigation--lightdom.scss @@ -453,8 +453,7 @@ pfe-navigation-item { margin-bottom: 0; } - >*:nth-child(3), - >*:nth-child(4) { + >*:nth-child(n+3) { margin-top: 32px; } } @@ -486,8 +485,7 @@ pfe-navigation-item { -ms-grid-column: 4; } - >*:nth-child(3), - >*:nth-child(4) { + >*:nth-child(n+3) { margin-top: 0; } }