Skip to content
This repository has been archived by the owner on Aug 13, 2023. It is now read-only.

Hide visible pink line below nav element #3628

Merged
merged 3 commits into from
Jul 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/components/psammead-navigation/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
<!-- prettier-ignore -->
| Version | Description |
|---------|-------------|
| 6.0.15 | [PR#3628](https://github.com/bbc/psammead/pull/3628) Tweak :after styling to obscure pink bottom line |
| 6.0.14 | [PR#3623](https://github.com/bbc/psammead/pull/3623) Talos - Bump Dependencies - @bbc/gel-foundations |
| 6.0.13 | [PR#3613](https://github.com/bbc/psammead/pull/3613) Talos - Bump Dependencies - @bbc/psammead-assets |
| 6.0.12 | [PR#3604](https://github.com/bbc/psammead/pull/3604) Talos - Bump Dependencies - @bbc/gel-foundations |
Expand Down
2 changes: 1 addition & 1 deletion packages/components/psammead-navigation/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion packages/components/psammead-navigation/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bbc/psammead-navigation",
"version": "6.0.14",
"version": "6.0.15",
"description": "A navigation bar to use on index pages",
"main": "dist/index.js",
"module": "esm/index.js",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ exports[`Navigation should render correctly 1`] = `
.c4::after {
content: '';
position: absolute;
bottom: 0;
bottom: -1px;
width: 80rem;
border-bottom: 0.0625rem solid #eab3b3;
z-index: -1;
Expand Down Expand Up @@ -447,7 +447,7 @@ exports[`Navigation should render correctly when ampOpenClass prop is provided 1
.c4::after {
content: '';
position: absolute;
bottom: 0;
bottom: -1px;
width: 80rem;
border-bottom: 0.0625rem solid #eab3b3;
z-index: -1;
Expand Down Expand Up @@ -720,7 +720,7 @@ exports[`Navigation should render correctly when isOpen is true 1`] = `
.c4::after {
content: '';
position: absolute;
bottom: 0;
bottom: -1px;
width: 80rem;
border-bottom: 0.0625rem solid #eab3b3;
z-index: -1;
Expand Down Expand Up @@ -1025,7 +1025,7 @@ exports[`Scrollable Navigation should render correctly 1`] = `
.c5::after {
content: '';
position: absolute;
bottom: 0;
bottom: -1px;
width: 80rem;
border-bottom: 0.0625rem solid #eab3b3;
z-index: -1;
Expand Down
2 changes: 1 addition & 1 deletion packages/components/psammead-navigation/src/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ const StyledListItem = styled.li`
&::after {
content: '';
position: absolute;
bottom: 0;
bottom: -1px;
width: ${GEL_GROUP_5_SCREEN_WIDTH_MIN};
border-bottom: 0.0625rem solid ${BORDER_COLOR};
z-index: -1;
Expand Down