Commit 1e1b1a93 by Arjun Jhukal

updated the minor changes

parent 32e37518
This source diff could not be displayed because it is too large. You can view the blob instead.
...@@ -191,6 +191,35 @@ ...@@ -191,6 +191,35 @@
} }
} }
&:last-child {
position: relative;
&::after {
content: "New";
position: absolute;
right: -10px;
top: -15px;
background-color: rgb(17, 170, 55);
border-radius: 4px;
font-size: 10px;
line-height: 12px;
padding: 2px 6px;
color: $white;
animation: glow 1.5s ease-in-out infinite alternate;
}
@keyframes glow {
0% {
box-shadow: 0 0 4px rgba(17, 170, 55, 0.5);
}
100% {
box-shadow: 0 0 12px rgba(17, 170, 55, 1);
}
}
}
&:last-of-type { &:last-of-type {
margin-right: 0; margin-right: 0;
} }
......
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