Commit 8badb65d authored by Nur Rony's avatar Nur Rony

fixes non-retina shadow and browser zoom issue

parent d7eeb6df
...@@ -75,6 +75,8 @@ ul.notes { ...@@ -75,6 +75,8 @@ ul.notes {
display: none; display: none;
padding: 10px 0 0; padding: 10px 0 0;
cursor: pointer; cursor: pointer;
position: relative;
z-index: 2;
&:hover { &:hover {
color: $gl-link-color; color: $gl-link-color;
...@@ -118,11 +120,11 @@ ul.notes { ...@@ -118,11 +120,11 @@ ul.notes {
&::after { &::after {
content: ''; content: '';
width: 100%; width: 100%;
height: 20px; height: 67px;
position: absolute; position: absolute;
left: 0; left: 0;
bottom: 50px; bottom: 0;
background: linear-gradient(rgba($gray-light, .3) 0, $white-light); background: linear-gradient(rgba($gray-light, 0.1) -100px, $white-light 100%);
} }
&.hide-shade { &.hide-shade {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment