💄Added shadow to What's new footer

no refs.
- improved discoverability of having more content/scrollable area by adding a small shadow to the footer
This commit is contained in:
Peter Zimon 2020-02-03 20:58:20 +01:00
parent 1756180025
commit 767ce72212

View File

@ -174,4 +174,23 @@
padding: 14px 32px 16px;
border-top: 1px solid var(--whitegrey);
justify-content: space-between;
}
.gh-wn-footer {
position: relative;
margin-top: 14px;
margin-bottom: -13px;
}
.gh-wn-footer:before {
position: absolute;
content: "";
top: -14px;
left: -32px;
right: -32px;
height: 6px;
background: rgba(255,255,255,0);
box-shadow:
0 -0.3px 1px rgba(0, 0, 0, 0.03),
0 -4px 7px rgba(0, 0, 0, 0.06);
}