@ayoam
Posted
Well done! in addition to @Remus432 feedback , the share preview is missing the triangle , you can create it by making the preview container relative and add ::after to it like this:
.preview-conatiner{
...
position :relative
}
.preview-conatiner::after {
content: "";
position: absolute;
left: 50%;
transform: translate(-50%, 0);
width: 0;
height: 0;
border-left: 12px solid transparent;
border-right: 12px solid transparent;
border-top: 13px solid #48556a;
}
you can see the solution on my profile to understand it better.
hope this feedback helps.
Marked as helpful